| 586 | |
| 587 | |
| 588 | void iscPrefixLock(TEXT* string, const TEXT* root, bool createLockDir) |
| 589 | { |
| 590 | /************************************** |
| 591 | * |
| 592 | * i s c P r e f i x L o c k |
| 593 | * |
| 594 | ************************************** |
| 595 | * |
| 596 | * Functional description |
| 597 | * Find appropriate Firebird lock file prefix. |
| 598 | * |
| 599 | **************************************/ |
| 600 | gds__prefix_lock(string, ""); |
| 601 | |
| 602 | if (createLockDir) |
| 603 | os_utils::createLockDirectory(string); |
| 604 | |
| 605 | iscSafeConcatPath(string, root); |
| 606 | } |
| 607 | |
| 608 | |
| 609 | void iscSafeConcatPath(TEXT *resultString, const TEXT *appendString) |
no test coverage detected