• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

nasa / trick / 23871410048

01 Apr 2026 09:20PM UTC coverage: 55.811% (-0.1%) from 55.922%
23871410048

Pull #2011

github

web-flow
Merge 933021c3f into 5cf9d7558
Pull Request #2011: Standardize code style using clang-format

12577 of 22535 relevant lines covered (55.81%)

310562.05 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

37.5
/trick_source/sim_services/FrameLog/FrameLog_c_intf.cpp
1
#include <stdio.h>
2
#include "trick/FrameLog.hh"
3

4
/* Global singleton pointer to the framelog class */
5
extern Trick::FrameLog * the_fl ;
6

7
/*************************************************************************/
8
/* These routines are the "C" interface to framelog instrumentation     */
9
/*************************************************************************/
10

11
/**
12
 * @relates Trick::FrameLog
13
 * @copydoc Trick::FrameLog::framelog_off
14
 * C wrapper for Trick::FrameLog::framelog_off
15
 */
16
extern "C" int frame_log_off(void) {
1✔
17
    if (the_fl != NULL) {
1✔
18
        return the_fl->framelog_off() ;
1✔
19
    }
20
    return(0) ;
×
21
}
22

23
/**
24
 * @relates Trick::FrameLog
25
 * @copydoc Trick::FrameLog::set_max_samples
26
 * C wrapper for Trick::FrameLog::set_max_samples
27
 */
28
extern "C" int frame_log_set_max_samples(int num) {
×
29
    if (the_fl != NULL) {
×
30
        return the_fl->set_max_samples(num) ;
×
31
    }
32
    return(0) ;
×
33
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc