Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Process /
[ HOME SHELL ]
Name
Size
Permission
Action
GID
[ DIR ]
drwxr-xr-x
Status
[ DIR ]
drwxr-xr-x
Sys
[ DIR ]
drwxr-xr-x
UID
[ DIR ]
drwxr-xr-x
abort-c.yaml
395
B
-rw-r--r--
cdesc-Process.yaml
3.85
KB
-rw-r--r--
detach-c.yaml
1.91
KB
-rw-r--r--
egid%3d-c.yaml
315
B
-rw-r--r--
egid-c.yaml
454
B
-rw-r--r--
euid%3d-c.yaml
302
B
-rw-r--r--
euid-c.yaml
424
B
-rw-r--r--
exec-c.yaml
1.22
KB
-rw-r--r--
exit%21-c.yaml
421
B
-rw-r--r--
exit-c.yaml
1.35
KB
-rw-r--r--
fork-c.yaml
1.04
KB
-rw-r--r--
getpgid-c.yaml
421
B
-rw-r--r--
getpgrp-c.yaml
433
B
-rw-r--r--
getpriority-c.yaml
863
B
-rw-r--r--
getrlimit-c.yaml
868
B
-rw-r--r--
gid%3d-c.yaml
269
B
-rw-r--r--
gid-c.yaml
416
B
-rw-r--r--
groups%3d-c.yaml
536
B
-rw-r--r--
groups-c.yaml
417
B
-rw-r--r--
initgroups-c.yaml
837
B
-rw-r--r--
kill-c.yaml
963
B
-rw-r--r--
maxgroups%3d-c.yaml
330
B
-rw-r--r--
maxgroups-c.yaml
399
B
-rw-r--r--
pid-c.yaml
368
B
-rw-r--r--
ppid-c.yaml
609
B
-rw-r--r--
setpgid-c.yaml
366
B
-rw-r--r--
setpgrp-c.yaml
299
B
-rw-r--r--
setpriority-c.yaml
605
B
-rw-r--r--
setrlimit-c.yaml
2.41
KB
-rw-r--r--
setsid-c.yaml
457
B
-rw-r--r--
times-c.yaml
473
B
-rw-r--r--
uid%3d-c.yaml
312
B
-rw-r--r--
uid-c.yaml
414
B
-rw-r--r--
wait-c.yaml
2.17
KB
-rw-r--r--
wait2-c.yaml
772
B
-rw-r--r--
waitall-c.yaml
878
B
-rw-r--r--
waitpid-c.yaml
2.18
KB
-rw-r--r--
waitpid2-c.yaml
778
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wait-c.yaml
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: "Waits for a child process to exit, returns its process id, and sets <tt>$?</tt> to a <tt>Process::Status</tt> object containing information on that process. Which child it waits on depends on the value of <em>pid</em>:" - !ruby/object:SM::Flow::LIST contents: - !ruby/struct:SM::Flow::LI label: "> 0:" body: Waits for the child whose process ID equals <em>pid</em>. - !ruby/struct:SM::Flow::LI label: "0:" body: Waits for any child whose process group ID equals that of the calling process. - !ruby/struct:SM::Flow::LI label: "-1:" body: Waits for any child process (the default if no <em>pid</em> is given). - !ruby/struct:SM::Flow::LI label: "< -1:" body: Waits for any child whose process group ID equals the absolute value of <em>pid</em>. type: :NOTE - !ruby/struct:SM::Flow::P body: The <em>flags</em> argument may be a logical or of the flag values <tt>Process::WNOHANG</tt> (do not block if no child available) or <tt>Process::WUNTRACED</tt> (return stopped children that haven't been reported). Not all flags are available on all platforms, but a flag value of zero will work on all platforms. - !ruby/struct:SM::Flow::P body: Calling this method raises a <tt>SystemError</tt> if there are no child processes. Not available on all platforms. - !ruby/struct:SM::Flow::VERB body: " include Process\n fork { exit 99 } #=> 27429\n wait #=> 27429\n $?.exitstatus #=> 99\n\n pid = fork { sleep 3 } #=> 27440\n Time.now #=> Wed Apr 09 08:57:09 CDT 2003\n waitpid(pid, Process::WNOHANG) #=> nil\n Time.now #=> Wed Apr 09 08:57:09 CDT 2003\n waitpid(pid, 0) #=> 27440\n Time.now #=> Wed Apr 09 08:57:12 CDT 2003\n" full_name: Process::wait is_singleton: true name: wait params: | Process.wait() => fixnum Process.wait(pid=-1, flags=0) => fixnum Process.waitpid(pid=-1, flags=0) => fixnum visibility: public
Close