mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
28 lines
379 B
C
28 lines
379 B
C
/**
|
|
* @file unistd.h
|
|
* @author fslongjin (longjin@RinGoTek.cn)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2022-04-22
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <syscall/syscall.h>
|
|
#include <syscall/syscall_num.h>
|
|
|
|
/**
|
|
* @brief fork当前进程
|
|
*
|
|
* @return pid_t
|
|
*/
|
|
pid_t fork(void);
|
|
|
|
/**
|
|
* @brief vfork当前进程
|
|
*
|
|
* @return pid_t
|
|
*/
|
|
pid_t vfork(void); |