PER Firmware
Loading...
Searching...
No Matches
syscalls.c File Reference
#include "syscalls.h"
Include dependency graph for syscalls.c:

Functions

int * __errno (void)
 
int _write (int file, char *ptr, int len)
 
int _read (int file, char *ptr, int len)
 
int _close (int file)
 
int _fstat (int file, struct stat *st)
 
int _isatty (int file)
 
int _lseek (int file, int ptr, int dir)
 
void * _sbrk (int incr)
 
int _kill (int pid, int sig)
 
int _kill_r (struct _reent *r, int pid, int sig)
 
int _getpid (void)
 
int _getpid_r (struct _reent *r)
 

Function Documentation

◆ __errno()

int * __errno ( void )

◆ _close()

int _close ( int file)

◆ _fstat()

int _fstat ( int file,
struct stat * st )

◆ _getpid()

int _getpid ( void )
Here is the caller graph for this function:

◆ _getpid_r()

int _getpid_r ( struct _reent * r)
Here is the call graph for this function:

◆ _isatty()

int _isatty ( int file)

◆ _kill()

int _kill ( int pid,
int sig )
Here is the caller graph for this function:

◆ _kill_r()

int _kill_r ( struct _reent * r,
int pid,
int sig )
Here is the call graph for this function:

◆ _lseek()

int _lseek ( int file,
int ptr,
int dir )

◆ _read()

int _read ( int file,
char * ptr,
int len )

◆ _sbrk()

void * _sbrk ( int incr)

◆ _write()

int _write ( int file,
char * ptr,
int len )