Once the system call handler for fork is invoked, the kernel begins the process of creating a new child process. The system call handler is responsible for dispatching the request to the appropriate kernel function. In Linux, this is managed by a system call table where each entry corresponds to a system call number and its handler function. The fork system call number is used to index into this table and invoke the corresponding handler function.