खोज…


वाक्य - विन्यास

  • pid_t getpid (शून्य);
  • pid_t गेटपिड (शून्य);
  • pid_t कांटा (शून्य);
  • pid_t वेटपिड (pid_t pid, int * wstatus, int options);
  • int execv (const char * path, char * const argv []);

पैरामीटर

फ़ंक्शन, पैरामीटर (एस), रिटर्न वैल्यू विवरण
fork() समारोह का नाम
कोई नहीं n / a
रिटर्न पीआईडी, 0, या -1 कॉलिंग प्रक्रिया नव निर्माण प्रक्रिया का पीआईडी प्राप्त करती है या विफलता पर -1। बच्चे (नव निर्मित प्रक्रिया) विफलता सेट के मामले में 0. प्राप्त errno या तो करने के लिए EAGAIN या ENOMEM
- -
execv() समारोह का नाम
const char *path स्ट्रिंग निष्पादन योग्य के नाम से युक्त हो सकता है (टोलकुड पथ हो सकता है)
char *const argv[] तर्क के रूप में स्ट्रिंग सूचक की सरणी
रिटर्न -1 फेल होने पर सफलता पर यह फ़ंक्शन वापस नहीं आता है।
- -

बच्चे की प्रक्रिया बनाएं और बाहर निकलने तक प्रतीक्षा करें

यह कार्यक्रम दर्शाता है कि fork() का उपयोग करके किसी अन्य प्रक्रिया को कैसे चलाया जाए और waitpid() का उपयोग करके इसकी समाप्ति की प्रतीक्षा करें:

  • fork() वर्तमान प्रक्रिया की एक समान प्रतिलिपि बनाता है। मूल प्रक्रिया मूल प्रक्रिया है, जबकि नव निर्मित एक बच्चे की प्रक्रिया है। fork() बाद दोनों प्रक्रियाएं जारी हैं fork()

  • waitpid() तब तक ब्लॉक होता है जब तक कि बच्चा प्रक्रिया से बाहर नहीं निकलता है या समाप्त हो जाता है और अपने निकास कोड और समाप्ति कारण को वापस कर देता है।

#include <unistd.h>     /* for fork(), getpid() */
#include <sys/types.h>  /* for waitpid() */
#include <sys/wait.h>   /* for waitpid() */
#include <stdlib.h>     /* for exit() */
#include <stdio.h>      /* for printf(), perror() */

int
main(int argc, char *argv[])
{
    /* Create child process.
     *
     * On success, fork() returns the process ID of the child (> 0) to the
     * parent and 0 to the child. On error, -1 is returned.
     */
    pid_t child_pid = fork();

    if (child_pid < 0) {
        perror("fork() failed");
        exit(EXIT_FAILURE);
    } else if (child_pid == 0) {
        /* Print message from child process.
         *
         * getpid() returns the PID (process identifier) of current process,
         * which is typically int but doesn't have to be, so we cast it.
         *
         * getppid() returns the PID of the parent process.
         */
        printf("from child: pid=%d, parent_pid=%d\n",
                 (int)getpid(), (int)getppid());

        /* We can do something here, e.g. load another program using exec().
         */
        exit(33);
    } else if (child_pid > 0) {
        /* Print message from parent process.
         */
        printf("from parent: pid=%d child_pid=%d\n",
                  (int)getpid(), (int)child_pid); 
        
        /* Wait until child process exits or terminates.
         *
         * The return value of waitpid() is PID of the child process, while
         * its argument is filled with exit code and termination reason.
         */
        int status;
        pid_t waited_pid = waitpid(child_pid, &status, 0);

        if (waited_pid < 0) {
            perror("waitpid() failed");
            exit(EXIT_FAILURE);
        } else if (waited_pid == child_pid) {
            if (WIFEXITED(status)) {
                /* WIFEXITED(status) returns true if the child has terminated 
                 * normally. In this case WEXITSTATUS(status) returns child's
                 * exit code.
                 */
                printf("from parent: child exited with code %d\n",
                          WEXITSTATUS(status));
            }
        }
    }

    exit(EXIT_SUCCESS);
}

उदाहरण आउटपुट:

from parent: pid=2486 child_pid=2487
from child: pid=2487, parent_pid=2486
from parent: child exited with code 33

यहां से नकल की गई, जो मूल रूप से M.Geiger द्वारा बनाई गई थी।



Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow