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

nasa / trick / 4735396045

pending completion
4735396045

push

github

GitHub
Update README.md

12510 of 21441 relevant lines covered (58.35%)

873896.93 hits per line

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

87.5
/trick_source/sim_services/MemoryManager/MemoryManager_is_alloced.cpp
1
#include "trick/MemoryManager.hh"
2

3
int Trick::MemoryManager::is_alloced(void *addr) {
480✔
4

5
    ALLOC_INFO *info;
6

7
    pthread_mutex_lock(&mm_mutex);
480✔
8
    if ( (info = get_alloc_info_at( addr)) != NULL) {
480✔
9
        pthread_mutex_unlock(&mm_mutex);
×
10
        return (1);
×
11
    }
12
    pthread_mutex_unlock(&mm_mutex);
480✔
13
    return (0);
480✔
14
}
15

16
// MEMBER FUNCTION:
17
int Trick::MemoryManager::var_exists( std::string var_name) {
1,157✔
18
    VARIABLE_MAP::iterator variable_pos;
1,157✔
19

20
    pthread_mutex_lock(&mm_mutex);
1,157✔
21
    variable_pos = variable_map.find( var_name);
1,157✔
22

23
    if (variable_pos != variable_map.end()) {
1,157✔
24
        pthread_mutex_unlock(&mm_mutex);
527✔
25
        return (1);
527✔
26
    }
27
    pthread_mutex_unlock(&mm_mutex);
630✔
28
    return (0);
630✔
29
}
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