STM32CubeIDE Minimal System calls file. More...
#include <sys/stat.h>
#include <stdlib.h>
#include <errno.h>
#include <stdio.h>
#include <signal.h>
#include <time.h>
#include <sys/time.h>
#include <sys/times.h>
#include "stm32f411e_discovery.h"
Go to the source code of this file.
Functions | |
__attribute__ ((weak)) | |
int | __io_getchar (void) |
int | __io_putchar (int ch) __attribute__((weak)) |
int | _close (int file) |
int | _execve (char *name, char **argv, char **env) |
void | _exit (int status) |
int | _fork (void) |
int | _fstat (int file, struct stat *st) |
int | _getpid (void) |
int | _isatty (int file) |
int | _kill (int pid, int sig) |
int | _link (char *old, char *new) |
int | _lseek (int file, int ptr, int dir) |
int | _open (char *path, int flags,...) |
int | _stat (char *file, struct stat *st) |
int | _times (struct tms *buf) |
int | _unlink (char *name) |
int | _wait (int *status) |
void | initialise_monitor_handles () |
Variables | |
char ** | environ = __env |
int | errno |
STM32CubeIDE Minimal System calls file.
This software component is licensed by ST under BSD 3-Clause license, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: opensource.org/licenses/BSD-3-Clause
Definition in file stm32f411/stm32f411e-disco/Src/syscalls.c.
__attribute__ | ( | (weak) | ) |
Definition at line 68 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int __io_getchar | ( | void | ) |
Definition at line 40 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int __io_putchar | ( | int | ch | ) |
Definition at line 141 of file pv_stm32f469.c.
int _close | ( | int | file | ) |
Definition at line 91 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _execve | ( | char * | name, |
char ** | argv, | ||
char ** | env | ||
) |
Definition at line 154 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
void _exit | ( | int | status | ) |
Definition at line 62 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _fork | ( | void | ) |
Definition at line 148 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _fstat | ( | int | file, |
struct stat * | st | ||
) |
Definition at line 97 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _getpid | ( | void | ) |
Definition at line 51 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _isatty | ( | int | file | ) |
Definition at line 103 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _kill | ( | int | pid, |
int | sig | ||
) |
Definition at line 56 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _link | ( | char * | old, |
char * | new | ||
) |
Definition at line 142 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _lseek | ( | int | file, |
int | ptr, | ||
int | dir | ||
) |
Definition at line 108 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _open | ( | char * | path, |
int | flags, | ||
... | |||
) |
Definition at line 113 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _stat | ( | char * | file, |
struct stat * | st | ||
) |
Definition at line 136 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _times | ( | struct tms * | buf | ) |
Definition at line 131 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _unlink | ( | char * | name | ) |
Definition at line 125 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int _wait | ( | int * | status | ) |
Definition at line 119 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
void initialise_monitor_handles | ( | ) |
Definition at line 47 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
char** environ = __env |
Definition at line 43 of file stm32f411/stm32f411e-disco/Src/syscalls.c.
int errno |