MCPcopy Create free account
hub / github.com/F-Stack/f-stack / flopen

Function flopen

tools/libutil/flopen.c:125–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125int
126flopen(const char *path, int flags, ...)
127{
128 va_list ap;
129 int ret;
130
131 va_start(ap, flags);
132 ret = vflopenat(AT_FDCWD, path, flags, ap);
133 va_end(ap);
134 return (ret);
135}
136
137int
138flopenat(int dirfd, const char *path, int flags, ...)

Callers 7

gr_lockFunction · 0.85
pw_lockFunction · 0.85
test_flopen_createFunction · 0.85
test_flopen_openFunction · 0.85
test_flopen_lock_selfFunction · 0.85
test_flopen_lock_otherFunction · 0.85
test_flopen_lock_childFunction · 0.85

Calls 1

vflopenatFunction · 0.85

Tested by 5

test_flopen_createFunction · 0.68
test_flopen_openFunction · 0.68
test_flopen_lock_selfFunction · 0.68
test_flopen_lock_otherFunction · 0.68
test_flopen_lock_childFunction · 0.68