mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Some checks are pending
Docs / deploy-docs (push) Waiting to run
CI / check_readme (push) Waiting to run
CI / upload_metadata (push) Blocked by required conditions
CI / tests (push) Waiting to run
CI / check_c-cpp (push) Waiting to run
CI / check_python (push) Waiting to run
CI / build (MHP30) (push) Waiting to run
CI / build (Pinecil) (push) Waiting to run
CI / build (Pinecilv2) (push) Waiting to run
CI / build (S60) (push) Waiting to run
CI / build (S60P) (push) Waiting to run
CI / build (T55) (push) Waiting to run
CI / check_shell (push) Waiting to run
CI / build (TS100) (push) Waiting to run
CI / build (TS101) (push) Waiting to run
CI / build (TS80) (push) Waiting to run
CI / build (TS80P) (push) Waiting to run
CI / build_multi-lang (Pinecil) (push) Waiting to run
CI / build_multi-lang (Pinecilv2) (push) Waiting to run
25 lines
763 B
C
25 lines
763 B
C
/* Includes */
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/time.h>
|
|
#include <sys/times.h>
|
|
#include <time.h>
|
|
|
|
/* Functions */
|
|
void initialise_monitor_handles() {}
|
|
|
|
/* Syscalls (stub implementations to avoid compile warnings and possibe future problems) */
|
|
int _getpid(void) { return 1; }
|
|
|
|
#if defined(MODEL_Pinecil) || defined(MODEL_Pinecilv2)
|
|
// do nothing here because some stubs and real implementations added for Pinecils already
|
|
#else
|
|
off_t _lseek(int fd, off_t ptr, int dir) { return -1; }
|
|
ssize_t _read(int fd, void *ptr, size_t len) { return -1; }
|
|
ssize_t _write(int fd, const void *ptr, size_t len) { return -1; }
|
|
int _close(int fd) { return -1; }
|
|
#endif
|