Home
last modified time | relevance | path

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

/linux-2.4.37.9/fs/
Dfile.c168 fd_set *new_openset = 0, *new_execset = 0; in expand_fdset() local
191 new_execset = alloc_fdset(nfds); in expand_fdset()
193 if (!new_openset || !new_execset) in expand_fdset()
209 memcpy (new_execset, files->close_on_exec, files->max_fdset/8); in expand_fdset()
211 memset (&new_execset->fds_bits[i], 0, count); in expand_fdset()
216 new_execset = xchg(&files->close_on_exec, new_execset); in expand_fdset()
219 free_fdset (new_execset, nfds); in expand_fdset()
229 if (new_execset) in expand_fdset()
230 free_fdset(new_execset, nfds); in expand_fdset()