C: made it so column DIR* are not kept open to handle very large DMS

This commit is contained in:
Celine Mercier
2019-09-04 12:55:21 +02:00
parent f296517716
commit a7fabff1c7
3 changed files with 282 additions and 30 deletions

View File

@@ -40,12 +40,6 @@ typedef struct OBIDMS_column_directory {
char directory_name[OBIDMS_COLUMN_MAX_NAME+1]; /**< The name of the directory
* containing the column.
*/
DIR* directory; /**< A directory entry usable to
* refer and scan the column directory.
*/
int dir_fd; /**< The file descriptor of the directory entry
* usable to refer and scan the column directory.
*/
} OBIDMS_column_directory_t, *OBIDMS_column_directory_p;