Paparazzi UAS  v5.14.0_stable-0-g3f680d1
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
pprz_syscalls.c File Reference
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
+ Include dependency graph for pprz_syscalls.c:

Go to the source code of this file.

Functions

int _read_r (struct _reent *r, int file, char *ptr, int len)
 Fake system calls. More...
 
int _lseek_r (struct _reent *r, int file, int ptr, int dir)
 
int _write_r (struct _reent *r, int file, char *ptr, int len)
 
int _close_r (struct _reent *r, int file)
 
caddr_t _sbrk_r (struct _reent *r, int incr)
 
int _fstat_r (struct _reent *r, int file, struct stat *st)
 
int _isatty_r (struct _reent *r, int fd)
 
pid_t _getpid (void)
 
void _exit (int i)
 
void _kill (void)
 

Function Documentation

int _close_r ( struct _reent *  r,
int  file 
)

Definition at line 112 of file pprz_syscalls.c.

void _exit ( int  i)

Definition at line 163 of file pprz_syscalls.c.

int _fstat_r ( struct _reent *  r,
int  file,
struct stat *  st 
)

Definition at line 132 of file pprz_syscalls.c.

pid_t _getpid ( void  )

Definition at line 155 of file pprz_syscalls.c.

int _isatty_r ( struct _reent *  r,
int  fd 
)

Definition at line 143 of file pprz_syscalls.c.

void _kill ( void  )

Definition at line 170 of file pprz_syscalls.c.

int _lseek_r ( struct _reent *  r,
int  file,
int  ptr,
int  dir 
)

Definition at line 89 of file pprz_syscalls.c.

int _read_r ( struct _reent *  r,
int  file,
char *  ptr,
int  len 
)

Fake system calls.

based on: ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio Licensed under the Apache License, Version 2.0 (the "License");

Definition at line 77 of file pprz_syscalls.c.

caddr_t _sbrk_r ( struct _reent *  r,
int  incr 
)

Definition at line 122 of file pprz_syscalls.c.

int _write_r ( struct _reent *  r,
int  file,
char *  ptr,
int  len 
)

Definition at line 101 of file pprz_syscalls.c.