You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
grep -h GSF_MAX_OPEN_FILES *.c | sort -u
for (fileTableIndex=0; fileTableIndex<GSF_MAX_OPEN_FILES; fileTableIndex++)
for (fileTableIndex=0; fileTableIndex<GSF_MAX_OPEN_FILES; fileTableIndex++)
if ((handle < 1) || (handle > GSF_MAX_OPEN_FILES))
if (fileTableIndex == GSF_MAX_OPEN_FILES)
if (fileTableIndex >= GSF_MAX_OPEN_FILES) {
if (numOpenFiles >= GSF_MAX_OPEN_FILES)
for (fileTableIndex=0; fileTableIndex<GSF_MAX_OPEN_FILES; fileTableIndex++)
if (fileTableIndex == GSF_MAX_OPEN_FILES)
if (numOpenFiles >= GSF_MAX_OPEN_FILES)
* GSF_MAX_OPEN_FILES files may be open by an application at a time.
* to GSF_MAX_OPEN_FILES files may be open by an application at a time.
static GSF_FILE_TABLE gsfFileTable[GSF_MAX_OPEN_FILES];
static short arraySize[GSF_MAX_OPEN_FILES][GSF_MAX_PING_ARRAY_SUBRECORDS];
static short *samplesArraySize[GSF_MAX_OPEN_FILES];
The text was updated successfully, but these errors were encountered:
0 is used or not?
The text was updated successfully, but these errors were encountered: