| 413 | |
| 414 | |
| 415 | void getUniqueFileId(int fd, UCharBuffer& id) |
| 416 | { |
| 417 | struct STAT statistics; |
| 418 | if (os_utils::fstat(fd, &statistics) != 0) |
| 419 | system_call_failed::raise("fstat"); |
| 420 | |
| 421 | makeUniqueFileId(statistics, id); |
| 422 | } |
| 423 | |
| 424 | |
| 425 | void getUniqueFileId(const char* name, UCharBuffer& id) |
no test coverage detected