XINU
Functions
getpid.c File Reference

現在実行中のプロセスIDを返す。 More...

#include <xinu.h>
Include dependency graph for getpid.c:

Go to the source code of this file.

Functions

pid32 getpid (void)
 現在実行中のプロセスIDを返す。 More...
 

Detailed Description

現在実行中のプロセスIDを返す。

Definition in file getpid.c.

Function Documentation

◆ getpid()

pid32 getpid ( void  )

現在実行中のプロセスIDを返す。

Returns
現在実行中のプロセスIDを返す(グローバル変数currpidをそのまま返す)

Definition at line 11 of file getpid.c.

References currpid.

Referenced by create(), exit(), rdscontrol(), rdsread(), rdswrite(), and userret().

12 {
13  return (currpid);
14 }
pid32 currpid
現在実行中のプロセス。
Definition: initialize.c:32
Here is the caller graph for this function: