@@ -351,7 +351,7 @@ static void instrument_start_thread(
351
351
// / \param f_code: function call to CProver.endThread:(I)V
352
352
// / \param [out] code: resulting transformation
353
353
// / \param symbol_table: a symbol table
354
- static void instrument_endThread (
354
+ static void instrument_end_thread (
355
355
const code_function_callt &f_code,
356
356
codet &code,
357
357
const symbol_tablet &symbol_table)
@@ -388,7 +388,7 @@ static void instrument_endThread(
388
388
// / \param f_code: function call to CProver.getCurrentThreadID:()I
389
389
// / \param [out] code: resulting transformation
390
390
// / \param symbol_table: a symbol table
391
- static void instrument_getCurrentThreadID (
391
+ static void instrument_get_current_thread_id (
392
392
const code_function_callt &f_code,
393
393
codet &code,
394
394
symbol_tablet &symbol_table)
@@ -505,10 +505,10 @@ void convert_threadblock(symbol_tablet &symbol_table)
505
505
cb = std::bind (instrument_start_thread, std::placeholders::_1,
506
506
std::placeholders::_2, std::placeholders::_3);
507
507
else if (f_name == " org.cprover.CProver.endThread:(I)V" )
508
- cb = std::bind (&instrument_endThread , std::placeholders::_1,
508
+ cb = std::bind (&instrument_end_thread , std::placeholders::_1,
509
509
std::placeholders::_2, std::placeholders::_3);
510
510
else if (f_name == " org.cprover.CProver.getCurrentThreadID:()I" )
511
- cb = std::bind (&instrument_getCurrentThreadID , std::placeholders::_1,
511
+ cb = std::bind (&instrument_get_current_thread_id , std::placeholders::_1,
512
512
std::placeholders::_2, std::placeholders::_3);
513
513
514
514
if (cb)
0 commit comments