-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
35 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
|
||
2024-07-25 David Declerck <[email protected]> | ||
|
||
* fbdb.c, fextfh.c, fisam.c, flmdb.c, focextfh.c, foci.c, fodbc.c: | ||
adjusted to use cob_open_mode where possible while | ||
merging 2022-10-04 | ||
|
||
2023-07-12 Simon Sobisch <[email protected]> | ||
|
||
* numeric.c (cob_decimal_set_binar): C89 fix | ||
|
@@ -196,8 +202,8 @@ | |
backport of adjusted struct indexed_file with new file_lock_set | ||
from rw-branch together with related changes | ||
* fileio.c [WITH_DB] (unlock_file): extracted to match other functions | ||
* fileio.c [WITH_DB]: added extra parameters to DB_PUT, DB_GET, DB_SEQ, | ||
DB_CPUT to show what is actually used | ||
* fileio.c [WITH_DB]->fbdb.c: added extra parameters to DB_PUT, DB_GET, | ||
DB_SEQ, DB_CPUT to show what is actually used | ||
* fileio.c: fixed some memory leaks related to filename handling | ||
* fileio.c (cob_file_free): file was not removed from cache which | ||
led to double-free scenarios on cleanup | ||
|
@@ -1016,7 +1022,7 @@ | |
|
||
2021-07-01 Ron Norman <[email protected]> | ||
|
||
* fbdb.c->fileio.c [WITH_DB]: checks if filename is actually a directory | ||
* fileio.c [WITH_DB]->fbdb.c: checks if filename is actually a directory | ||
|
||
2021-06-28 Ron Norman <[email protected]> and Christian Lademann | ||
|
||
|
@@ -3581,18 +3587,12 @@ | |
|
||
2016-12-30 Ron Norman <[email protected]> | ||
|
||
* fileio.c,common.h | ||
* fileio.c, common.h: | ||
Complete work on BDB use of SHARING & RETRY | ||
Problems solved by closing BDB cursor as soon/often as possible | ||
as the BDB cursor seems to create some internal locks | ||
Retry interval reduced to 100ms | ||
|
||
* INDEXED file test case added and uses a file to synchronize tests | ||
* RELATIVE file test case added and uses a file to synchronize tests | ||
|
||
2016-12-30 Ron Norman <[email protected]> | ||
|
||
* fileio.c: [WITH_DB] fixed BDB locking issues by closing BDB cursor as | ||
* fileio.c [WITH_DB]->fbdb.c: fixed BDB locking issues by closing BDB cursor as | ||
soon/often as possible as the BDB cursor seems to create some internal | ||
locks | ||
|
||
|
@@ -3624,7 +3624,7 @@ | |
|
||
2016-12-24 Ron Norman <[email protected]> | ||
|
||
* fileio.c,common.c,common.h,coblocal.h | ||
* fileio.c, common.c, common.h, coblocal.h: | ||
Extensive updates for fileio.c to handle OPEN SHARING | ||
and RETRY clauses on all I/O statements. | ||
Relative files use sigaction/alarm/fcntl to wait for | ||
|
@@ -3633,18 +3633,11 @@ | |
a wait/retry loop. each loop happens at 125ms interval. | ||
BDB code updated to use none deprecated functions, use some | ||
subroutines instead of inline code and changes for SHARING/RETRY | ||
|
||
* At present there are no test cases but these will come in a while | ||
I need to come up with a better way to synchronize separate | ||
processes so I can reliably recreate the test cases | ||
|
||
2016-12-24 Ron Norman <[email protected]> | ||
|
||
* fileio.c [WITH_DB]: reordered struct indexed_file, adding file_lock_set | ||
* fileio.c [WITH_DB]->fbdb.c: reordered struct indexed_file, adding file_lock_set | ||
and use it to fix multiple unlocking | ||
* fileio.c [WITH_DB]: extracted bdb_open_cursor, bdb_close_cursor, | ||
* fileio.c [WITH_DB]->fbdb.c: extracted bdb_open_cursor, bdb_close_cursor, | ||
bdb_close_index, lock_file | ||
* fileio.c [WITH_DB]: added code for BDB < 4.6 | ||
* fileio.c [WITH_DB]->fbdb.c: added code for BDB < 4.6 | ||
|
||
2016-12-23 Simon Sobisch <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -501,6 +501,9 @@ | |
run concurrent test cases. There is also several C$SLEEP | ||
calls to setup the test scenarios. | ||
So these tests appear to run for a long time | ||
* INDEXED file test case added and uses a file to synchronize tests | ||
* RELATIVE file test case added and uses a file to synchronize tests | ||
|
||
|
||
2016-12-06 Simon Sobisch <[email protected]> | ||
|
||
|