Searched refs:pid (Results 101 - 125 of 1288) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsmbrun.c60 pid_t pid; local
86 if ((pid=sys_fork()) < 0) {
96 if (pid) {
105 while((wpid = sys_waitpid(pid,&status,0)) < 0) {
115 if (wpid != pid) {
116 DEBUG(2,("waitpid(%d) : %s\n",(int)pid,strerror(errno)));
215 pid_t pid; local
241 if ((pid=sys_fork()) < 0) {
247 if (pid) {
267 while((wpid = sys_waitpid(pid,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/testsuite/nsswitch/
H A Dgetgrent_r.c48 pid_t pid; local
59 if ((pid = fork()) == -1) {
66 if (pid > 0) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/drivers/
H A Dxterm.c21 int pid; member in struct:xterm_chan
36 *data = ((struct xterm_chan) { .pid = -1,
90 int pid, fd, new, err; local
138 pid = run_helper(NULL, NULL, argv);
139 if (pid < 0) {
140 err = pid;
183 data->pid = pid;
191 os_kill_process(pid, 1);
202 if (data->pid !
[all...]
H A Dslirp.h12 int pid; member in struct:slirp_data
H A Dxterm_kern.c16 int pid; member in struct:xterm_wait
25 fd = os_rcv_fd(xterm->fd, &xterm->pid);
48 .pid = -1,
67 *pid_out = data->pid;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/tests/
H A Dfcntl_lock.c25 static int sys_waitpid(pid_t pid,int *status,int options) argument
28 return waitpid(pid,status,options);
30 return wait4(pid, status, options, NULL);
45 pid_t pid; local
53 if (!(pid=fork())) {
101 sys_waitpid(pid, &status, 0);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/storage/
H A Dusual-tables.c66 u16 vid, pid, bcdmin, bcdmax; member in struct:ignore_entry
74 .pid = id_product, \
101 unsigned vid, pid, bcd; local
106 pid = le16_to_cpu(udev->descriptor.idProduct);
110 if (p->vid == vid && p->pid == pid &&
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Dsyscalls.c19 int pid = task->mm->context.id.u.pid; local
37 ret = restore_registers(pid, &current->thread.regs.regs);
54 ret = os_arch_prctl(pid, code, ptr);
61 ret = save_registers(pid, &current->thread.regs.regs);
64 ret = save_registers(pid, &current->thread.regs.regs);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/mm/
H A Dtlb_nohash.c122 unsigned int pid; local
125 pid = mm->context.id;
126 if (pid != MMU_NO_CONTEXT)
127 _tlbil_pid(pid);
135 unsigned int pid; local
138 pid = mm ? mm->context.id : 0;
139 if (pid != MMU_NO_CONTEXT)
140 _tlbil_va(vmaddr, pid, tsize, ind);
166 unsigned int pid; member in struct:tlb_flush_param
175 _tlbil_pid(p ? p->pid
204 unsigned int pid; local
226 unsigned int pid; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dif_pppol2tp.h28 __kernel_pid_t pid; /* pid that owns the fd. member in struct:pppol2tp_addr
42 pid_t pid; /* pid that owns the fd. member in struct:pppol2tpv3_addr
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/runit/
H A Drunsvdir.c41 pid_t pid; member in struct:service
86 pid_t pid; local
93 pid = vfork();
95 if (pid == -1) {
99 if (pid == 0) {
108 sv[no].pid = pid;
139 if (!sv[i].pid)
157 /*sv[i].pid = 0;*/
175 if (sv[i].pid)
216 int pid; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/ncftp/
H A Dspool.c122 pid_t pid;
135 pid = fork();
136 if (pid < 0) {
138 } else if (pid == 0) {
154 (void) waitpid(pid, NULL, 0);
174 pid_t pid = 0;
192 pid = fork();
193 if (pid < 0) {
197 } else if (pid == 0) {
235 if (pid >
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/os-Linux/
H A Dprocess.c29 unsigned long os_process_pc(int pid) argument
35 sprintf(proc_stat, "/proc/%d/stat", pid);
61 int os_process_parent(int pid) argument
67 if (pid == -1)
70 snprintf(stat, sizeof(stat), "/proc/%d/stat", pid);
95 void os_stop_process(int pid) argument
97 kill(pid, SIGSTOP);
100 void os_kill_process(int pid, int reap_child) argument
102 kill(pid, SIGKILL);
104 CATCH_EINTR(waitpid(pid, NUL
111 os_ptrace_ldt(long pid, long addr, long data) argument
127 os_kill_ptraced_process(int pid, int reap_child) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dfcntl.c200 static void f_modown(struct file *filp, struct pid *pid, enum pid_type type, argument
204 if (force || !filp->f_owner.pid) {
205 put_pid(filp->f_owner.pid);
206 filp->f_owner.pid = get_pid(pid);
209 if (pid) {
218 int __f_setown(struct file *filp, struct pid *pid, enum pid_type type, argument
227 f_modown(filp, pid, typ
235 struct pid *pid; local
258 pid_t pid; local
271 struct pid *pid; local
555 struct pid *pid; local
590 struct pid *pid; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Dsession.h39 uint32 pid; member in struct:sessionid
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dprocess.h36 pid_t pid; member in struct:child
47 * @return -1 if it couldn't fork, 0 in the child process, the pid of the
63 * @return The pid of the process.
68 * Check if the process corresponding to the pid found in the pid file is
70 * @param fname The path to the pid file.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/distro/rpm/
H A Dopenvpn.init.d.rhel132 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
142 rm -f $piddir/*.pid
153 rm -f $piddir/$bn.pid
154 $openvpn --daemon --writepid $piddir/$bn.pid --config $c --cd $work
174 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
196 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
208 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
228 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
H A Dopenvpn.init.d.suse145 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
155 rm -f $piddir/*.pid
166 rm -f $piddir/$bn.pid
167 $openvpn --daemon --writepid $piddir/$bn.pid --config $c --cd $work
183 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
208 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
222 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
246 for pidf in `/bin/ls $piddir/*.pid 2>/dev/null`; do
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/atp/
H A Datp_open.c52 int pid; local
77 pid = getpid();
78 atp->atph_tid = tv.tv_sec ^ ((( pid << 8 ) & 0xff00 ) | ( pid >> 8 ));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/compat/
H A Dmktemp.c62 u_int pid; local
64 pid = getpid();
67 *trv = (pid % 10) + '0';
68 pid /= 10;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/mm/
H A Dasids-debugfs.c34 int pid = p->pid; local
36 if (unlikely(!pid))
40 seq_printf(file, "%5d : %04lx\n", pid,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/shared/
H A Dirq_user.h28 extern int activate_ipi(int fd, int pid);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/kernel/skas/
H A Dprocess.c36 int pid; local
39 pid = os_getpid();
41 cpu_tasks[0].pid = pid;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/trace/
H A Dtrace_workqueue.c23 pid_t pid; member in struct:cpu_workqueue_stats
62 if (node->pid == wq_thread->pid) {
84 if (node->pid == wq_thread->pid) {
112 cws->pid = wq_thread->pid;
131 if (node->pid == wq_thread->pid) {
205 struct pid *pi local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/scripts/python/
H A Dsyscall-counts-by-pid.py1 # system call counts, by pid
17 usage = "perf trace -s syscall-counts-by-pid.py [comm]\n";
50 print "\nsyscall events by comm/pid:\n\n",
52 print "%-40s %10s\n" % ("comm [pid]/syscalls", "count"),
59 for pid in pid_keys:
60 print "\n%s [%d]\n" % (comm, pid),
61 id_keys = syscalls[comm][pid].keys()
62 for id, val in sorted(syscalls[comm][pid].iteritems(), \

Completed in 165 milliseconds

1234567891011>>