Skip to content

Commit

Permalink
Fixed debug_pause semaphore name (#1793)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrockwell2 authored Oct 15, 2024
1 parent 5a5379b commit b2403dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trick_source/sim_services/DebugPause/DebugPause.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ int Trick::DebugPause::debug_pause_on() {

debug_pause_flag = true ;

sem_name_stream << "itimersepmaphore_" << getpid() ;
sem_name_stream << "debugstepmaphore_" << getpid() ;
sem_name = sem_name_stream.str() ;

debug_sem = sem_open(sem_name.c_str(), O_CREAT, S_IRWXU , 0);
Expand Down

0 comments on commit b2403dc

Please sign in to comment.