| 467 | } |
| 468 | |
| 469 | RecErrT |
| 470 | RecGetRecordCounter(const char *name, RecCounter *rec_counter, bool lock) |
| 471 | { |
| 472 | RecErrT err; |
| 473 | RecData data; |
| 474 | |
| 475 | if ((err = RecGetRecord_Xmalloc(name, RECD_COUNTER, &data, lock)) == REC_ERR_OKAY) { |
| 476 | *rec_counter = data.rec_counter; |
| 477 | } |
| 478 | return err; |
| 479 | } |
| 480 | |
| 481 | RecErrT |
| 482 | RecGetRecordByte(const char *name, RecByte *rec_byte, bool lock) |
no test coverage detected