✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.173
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python37/lib64/python3.7/multiprocessing//popen_fork.py
import os
import sys
import signal

from . import util

__all__ = ['Popen']

#
# Start child process using fork
#

class Popen(object):
    method = 'fork'

    def __init__(self, process_obj):
        util._flush_std_streams()
        self.returncode = None
        self.finalizer = None
        self._launch(process_obj)

    def duplicate_for_child(self, fd):
        return fd

    def poll(self, flag=os.WNOHANG):
        if self.returncode is None:
            try:
                pid, sts = os.waitpid(self.pid, flag)
            except OSError as e:
                # Child process not yet created. See #1731717
                # e.errno == errno.ECHILD == 10
                return None
            if pid == self.pid:
                if os.WIFSIGNALED(sts):
                    self.returncode = -os.WTERMSIG(sts)
                else:
                    assert os.WIFEXITED(sts), "Status is {:n}".format(sts)
                    self.returncode = os.WEXITSTATUS(sts)
        return self.returncode

    def wait(self, timeout=None):
        if self.returncode is None:
            if timeout is not None:
                from multiprocessing.connection import wait
                if not wait([self.sentinel], timeout):
                    return None
            # This shouldn't block if wait() returned successfully.
            return self.poll(os.WNOHANG if timeout == 0.0 else 0)
        return self.returncode

    def _send_signal(self, sig):
        if self.returncode is None:
            try:
                os.kill(self.pid, sig)
            except ProcessLookupError:
                pass
            except OSError:
                if self.wait(timeout=0.1) is None:
                    raise

    def terminate(self):
        self._send_signal(signal.SIGTERM)

    def kill(self):
        self._send_signal(signal.SIGKILL)

    def _launch(self, process_obj):
        code = 1
        parent_r, child_w = os.pipe()
        self.pid = os.fork()
        if self.pid == 0:
            try:
                os.close(parent_r)
                code = process_obj._bootstrap()
            finally:
                os._exit(code)
        else:
            os.close(child_w)
            self.finalizer = util.Finalize(self, os.close, (parent_r,))
            self.sentinel = parent_r

    def close(self):
        if self.finalizer is not None:
            self.finalizer()


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
1 May 2025 1.06 PM
root / linksafe
0755
__pycache__
--
1 May 2025 1.06 PM
root / linksafe
0755
dummy
--
1 May 2025 1.06 PM
root / linksafe
0755
__init__.py
0.901 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
connection.py
30.564 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
context.py
10.667 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
forkserver.py
12.11 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
heap.py
8.709 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
managers.py
40.024 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
pool.py
26.205 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
popen_fork.py
2.338 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
popen_forkserver.py
1.969 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
popen_spawn_posix.py
1.876 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
popen_spawn_win32.py
3.678 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
process.py
10.301 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
queues.py
11.315 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
reduction.py
9.142 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
resource_sharer.py
5.226 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
semaphore_tracker.py
5.339 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
sharedctypes.py
6.158 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
spawn.py
8.641 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
synchronize.py
11.313 KB
17 Apr 2024 5.36 PM
root / linksafe
0644
util.py
13.355 KB
17 Apr 2024 5.36 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF