Lines Matching refs:fdctx
43 static FdContext fdctx; variable
66 CHECK_NE(s, &fdctx.globsync); in unref()
67 CHECK_NE(s, &fdctx.filesync); in unref()
68 CHECK_NE(s, &fdctx.socksync); in unref()
77 atomic_uintptr_t *pl1 = &fdctx.tab[fd / kTableSizeL2]; in fddesc()
109 d->sync = &fdctx.globsync; in init()
123 atomic_store(&fdctx.globsync.rc, (u64)-1, memory_order_relaxed); in FdInit()
124 atomic_store(&fdctx.filesync.rc, (u64)-1, memory_order_relaxed); in FdInit()
125 atomic_store(&fdctx.socksync.rc, (u64)-1, memory_order_relaxed); in FdInit()
133 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); in FdOnFork()
145 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); in FdLocation()
222 init(thr, pc, fd, &fdctx.filesync); in FdFileCreate()
277 init(thr, pc, fd, &fdctx.socksync); in FdSocketCreate()
285 Acquire(thr, pc, (uptr)&fdctx.connectsync); in FdSocketAccept()
286 init(thr, pc, newfd, &fdctx.socksync); in FdSocketAccept()
294 Release(thr, pc, (uptr)&fdctx.connectsync); in FdSocketConnecting()
301 init(thr, pc, fd, &fdctx.socksync); in FdSocketConnect()