diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2019-04-17 00:19:51 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2019-04-17 00:19:51 +0200 |
| commit | d2b440e8ed4de65bbba8e3a718552cb53c094913 (patch) | |
| tree | 103a12c037df14888fd7bcc79722778b377151a8 /src/cc4group.h | |
| parent | 61090f7496ac8b25285f78c611654eb7abeeb0ad (diff) | |
| download | cc4group-d2b440e8ed4de65bbba8e3a718552cb53c094913.tar.gz cc4group-d2b440e8ed4de65bbba8e3a718552cb53c094913.zip | |
Small addition to openFd description
Diffstat (limited to 'src/cc4group.h')
| -rw-r--r-- | src/cc4group.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cc4group.h b/src/cc4group.h index 76b3609..dd5664a 100644 --- a/src/cc4group.h +++ b/src/cc4group.h @@ -207,7 +207,8 @@ typedef struct { bool (*openMemory)(CC4Group* const this, const void* const groupData, size_t const size, int const memoryManagement); // opens a group through a file descriptor - // the file descriptor must have been opened with read access; also be aware that the file must be opened with binary mode on windows + // the file descriptor must have been opened with read access and must be in blocking mode (should be default if O_NONBLOCK is not specified) + // also be aware that the file must be opened with binary mode on windows bool (*openFd)(CC4Group* const this, int fd); // opens a group through a FILE* |
