Home
last modified time | relevance | path

Searched refs:fl (Results 1 – 19 of 19) sorted by relevance

/glibc-2.36/hurd/
Dhurdmalloc.c102 struct free_list *fl; member
108 #define HEADER_FREE(h) ((h)->u.fl)
117 struct free_list *fl; member
122 #define HEADER_FREE(h) ((h)->fl)
167 more_memory(int size, free_list_t fl) in more_memory() argument
189 HEADER_NEXT (h) = fl->head; in more_memory()
193 fl->head = h; in more_memory()
203 free_list_t fl; in malloc() local
220 fl = &malloc_free_list[i]; in malloc()
221 spin_lock(&fl->lock); in malloc()
[all …]
/glibc-2.36/sysdeps/mach/hurd/
Dfcntl.c137 struct flock *fl = va_arg (ap, struct flock *); in __libc_fcntl() local
156 .l_type = fl->l_type, in __libc_fcntl()
157 .l_whence = fl->l_whence, in __libc_fcntl()
158 .l_start = fl->l_start, in __libc_fcntl()
159 .l_len = fl->l_len, in __libc_fcntl()
160 .l_pid = fl->l_pid in __libc_fcntl()
191 return __f_setlk (fd, fl->l_type, fl->l_whence, in __libc_fcntl()
192 fl->l_start, fl->l_len, wait); in __libc_fcntl()
200 fl->l_type = fl64.l_type; in __libc_fcntl()
201 fl->l_whence = fl64.l_whence; in __libc_fcntl()
[all …]
/glibc-2.36/nptl/
Dtst-cancel7.c62 struct flock fl = in sl() local
69 if (fcntl (fileno (f), F_SETLK, &fl) != 0) in sl()
131 struct flock fl = in do_test() local
138 if (fcntl (fileno (f), F_GETLK, &fl) != 0) in do_test()
141 if (fl.l_type != F_UNLCK) in do_test()
143 printf ("child %lld still running\n", (long long) fl.l_pid); in do_test()
144 if (fl.l_pid == ll) in do_test()
145 kill (fl.l_pid, SIGKILL); in do_test()
163 struct flock fl = in do_cleanup() local
170 if (fcntl (fileno (f), F_GETLK, &fl) == 0 && fl.l_type != F_UNLCK in do_cleanup()
[all …]
/glibc-2.36/sysdeps/pthread/
Dtst-flock2.c36 struct flock fl = in tf() local
43 if (TEMP_FAILURE_RETRY (fcntl (fd, F_SETLKW, &fl)) != 0) in tf()
109 struct flock fl = in do_test() local
116 if (TEMP_FAILURE_RETRY (fcntl (fd, F_SETLKW, &fl)) != 0) in do_test()
135 if (TEMP_FAILURE_RETRY (fcntl (fd, F_SETLK, &fl)) == 0) in do_test()
146 fl.l_type = F_UNLCK; in do_test()
147 if (TEMP_FAILURE_RETRY (fcntl (fd, F_SETLKW, &fl)) != 0) in do_test()
190 fl.l_type = F_WRLCK; in do_test()
191 if (TEMP_FAILURE_RETRY (fcntl (fd, F_SETLK, &fl)) == 0) in do_test()
223 fl.l_type = F_WRLCK; in do_test()
[all …]
/glibc-2.36/io/
Dlockf.c31 struct flock fl = { in lockf() local
45 fl.l_type = F_RDLCK; in lockf()
46 if (__fcntl (fd, F_GETLK, &fl) < 0) in lockf()
48 if (fl.l_type == F_UNLCK || fl.l_pid == __getpid ()) in lockf()
53 fl.l_type = F_UNLCK; in lockf()
54 return __fcntl (fd, F_SETLK, &fl); in lockf()
56 return __fcntl (fd, F_SETLKW, &fl); in lockf()
58 return __fcntl (fd, F_SETLK, &fl); in lockf()
/glibc-2.36/shadow/
Dlckpwdf.c89 struct flock fl; /* Information struct for locking. */ in __lckpwdf() local
134 memset (&fl, '\0', sizeof (struct flock)); in __lckpwdf()
135 fl.l_type = F_WRLCK; in __lckpwdf()
136 fl.l_whence = SEEK_SET; in __lckpwdf()
137 result = __fcntl (lock_fd, F_SETLKW, &fl); in __lckpwdf()
/glibc-2.36/login/
Dtst-pututxline-lockfail.c75 struct flock64 fl = in subprocess_lock_file() local
78 fl.l_whence = SEEK_SET, in subprocess_lock_file()
80 TEST_COMPARE (fcntl64 (fd, F_SETLKW, &fl), 0); in subprocess_lock_file()
Dutmp_file.c96 struct flock64 fl = in try_file_lock() local
102 bool status = __fcntl64_nocancel (fd, F_SETLKW, &fl) < 0; in try_file_lock()
123 struct flock64 fl = in file_unlock() local
127 __fcntl64_nocancel (fd, F_SETLKW, &fl); in file_unlock()
/glibc-2.36/sysdeps/nptl/
Dlowlevellock-futex.h54 # define __lll_private_flag(fl, private) \ argument
55 (((fl) | FUTEX_PRIVATE_FLAG) ^ (private))
/glibc-2.36/sysdeps/ia64/fpu/
Dimport_file.awk43 …g)(_?([1-9cdimpqstPQT]+|tail))?|(Constants|Poly|coeff)_.+|(double_sin_?cos|double_cis)[fl]?_.+):/ {
/glibc-2.36/ChangeLog.old/
DChangeLog.11156 * Makefile (headers): Removed float.h and fl.h.
1159 Created (from old fl.h files).
1637 * sysdeps/ieee754/fl.h: Fixed NAN and HUGE_VAL bit patterns; added
2061 * sysdeps/sparc/fl.h: Removed. Should use ieee754 version.
2516 * sysdeps/m68k/68881/fl.h: Use new magic to snarf ieee754/fl.h during
2519 * sysdeps/ieee754/fl.h: New file, taken mostly from the old
2522 * sysdeps/m68k/68881/fl.h: Now #includes ieee754/fl.h, and overrides
DChangeLog.95938 * io/lockf.c (lockf): Move initilisation of fl.l_whence and
5939 fl.l_start at beginning of function.
DChangeLog.5864 * sysdeps/m68k/fpu/fl.h: File removed.
9449 analogous macros to HUGE_VAL's: __huge_val[fl]_t, __HUGE_VAL[fl]_bytes.
DChangeLog.204759 login: Remove double-assignment of fl.l_whence in try_file_lock
DChangeLog.75705 * io/lockf.c (lockf): Clear fl before using.
6749 * sysdeps/vax/fl.h: Likewise.
DChangeLog.66826 * sysdeps/vax/Dist: Add fl.h.
/glibc-2.36/locale/
DC-translit.h.in838 "\xfb02" "fl" # <UFB02> LATIN SMALL LIGATURE FL
/glibc-2.36/localedata/charmaps/
DISO_106461794 <fl> /xFB/x02 LATIN SMALL LIGATURE FL
/glibc-2.36/manual/
Dtexinfo.tex5247 \def\indexisfl{fl}