Vehicle Control Unit 0.01
This is the c library for controlling the car.
|
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>
Go to the source code of this file.
Functions | |
int | __io_putchar (int ch) __attribute__((weak)) |
int | __io_getchar (void) |
void | initialise_monitor_handles () |
int | _getpid (void) |
int | _kill (int pid, int sig) |
void | _exit (int status) |
__attribute__ ((weak)) | |
int | _close (int file) |
int | _fstat (int file, struct stat *st) |
int | _isatty (int file) |
int | _lseek (int file, int ptr, int dir) |
int | _open (char *path, int flags,...) |
int | _wait (int *status) |
int | _unlink (char *name) |
int | _times (struct tms *buf) |
int | _stat (char *file, struct stat *st) |
int | _link (char *old, char *new) |
int | _fork (void) |
int | _execve (char *name, char **argv, char **env) |
Variables | |
char ** | environ = __env |
STM32CubeIDE Minimal System calls file.
Copyright (c) 2020-2024 STMicroelectronics. All rights reserved.
This software is licensed under terms that can be found in the LICENSE file in the root directory of this software component. If no LICENSE file comes with this software, it is provided AS-IS.
Definition in file syscalls.c.
__attribute__ | ( | (weak) | ) |
Definition at line 67 of file syscalls.c.
int __io_getchar | ( | void | ) |
int __io_putchar | ( | int | ch | ) |
int _close | ( | int | file | ) |
Definition at line 92 of file syscalls.c.
int _execve | ( | char * | name, |
char ** | argv, | ||
char ** | env | ||
) |
Definition at line 169 of file syscalls.c.
void _exit | ( | int | status | ) |
Definition at line 61 of file syscalls.c.
int _fork | ( | void | ) |
Definition at line 163 of file syscalls.c.
int _fstat | ( | int | file, |
struct stat * | st | ||
) |
Definition at line 99 of file syscalls.c.
int _getpid | ( | void | ) |
Definition at line 48 of file syscalls.c.
int _isatty | ( | int | file | ) |
Definition at line 106 of file syscalls.c.
int _kill | ( | int | pid, |
int | sig | ||
) |
Definition at line 53 of file syscalls.c.
int _link | ( | char * | old, |
char * | new | ||
) |
Definition at line 155 of file syscalls.c.
int _lseek | ( | int | file, |
int | ptr, | ||
int | dir | ||
) |
Definition at line 112 of file syscalls.c.
int _open | ( | char * | path, |
int | flags, | ||
... | |||
) |
Definition at line 120 of file syscalls.c.
int _stat | ( | char * | file, |
struct stat * | st | ||
) |
Definition at line 148 of file syscalls.c.
int _times | ( | struct tms * | buf | ) |
Definition at line 142 of file syscalls.c.
int _unlink | ( | char * | name | ) |
Definition at line 135 of file syscalls.c.
int _wait | ( | int * | status | ) |
Definition at line 128 of file syscalls.c.
void initialise_monitor_handles | ( | ) |
Definition at line 44 of file syscalls.c.
char** environ = __env |
Definition at line 40 of file syscalls.c.