Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
|
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
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) |
void | __cxa_pure_virtual (void) |
void | _fini (void) |
Variables | |
void * | __dso_handle |
void __cxa_pure_virtual | ( | void | ) |
Definition at line 174 of file pprz_syscalls.c.
int _close_r | ( | struct _reent * | r, |
int | file | ||
) |
Definition at line 112 of file pprz_syscalls.c.
void _exit | ( | int | i | ) |
Definition at line 162 of file pprz_syscalls.c.
void _fini | ( | void | ) |
Definition at line 184 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 154 of file pprz_syscalls.c.
int _isatty_r | ( | struct _reent * | r, |
int | fd | ||
) |
Definition at line 143 of file pprz_syscalls.c.
References fd.
void _kill | ( | void | ) |
Definition at line 169 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.
References dir.
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.
void* __dso_handle |
Definition at line 188 of file pprz_syscalls.c.