| 872 | |
| 873 | |
| 874 | static void bug_lck(const TEXT* string) |
| 875 | { |
| 876 | /************************************** |
| 877 | * |
| 878 | * b u g _ l c k |
| 879 | * |
| 880 | ************************************** |
| 881 | * |
| 882 | * Functional description |
| 883 | * Log the bug message, initialize the status vector |
| 884 | * and get out. |
| 885 | * |
| 886 | **************************************/ |
| 887 | TEXT s[128]; |
| 888 | |
| 889 | sprintf(s, "Fatal lock interface error: %.96s", string); |
| 890 | gds__log(s); |
| 891 | ERR_post(Arg::Gds(isc_db_corrupt) << Arg::Str(string)); |
| 892 | } |
| 893 | |
| 894 | |
| 895 | static bool compatible(const Lock* lock1, const Lock* lock2, USHORT level2) |
no test coverage detected