MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / readdir

Function readdir

src/common/os/os_utils.h:240–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

238 }
239
240 inline struct dirent* readdir(DIR* dirp)
241 {
242 struct dirent* rc;
243
244 do
245 {
246#ifdef LSB_BUILD
247 rc = readdir64(dirp);
248#else
249 rc = ::readdir(dirp);
250#endif
251 } while (rc == NULL && SYSCALL_INTERRUPTED(errno));
252
253 return rc;
254 }
255
256 inline void* mmap(void* addr, size_t length, int prot, int flags, int fd, off_t offset)
257 {

Callers 3

nextMethod · 0.85
path_utils.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected