mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-05 10:58:59 +08:00
00a23ee330
PUBLISHED_FROM=f08a8324dfde5f9e22eee0e5e4dbae0e3d45cb3f
60 lines
1.2 KiB
C
60 lines
1.2 KiB
C
/*
|
|
* Copyright (c) 2015 Cesanta Software Limited
|
|
* All rights reserved
|
|
*/
|
|
|
|
#include <ctype.h>
|
|
#include <sys/time.h>
|
|
#include <stdint.h>
|
|
|
|
#include <math.h>
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "esp_common.h"
|
|
|
|
/* Makes fprintf(stdout) and stderr work. */
|
|
/*
|
|
_ssize_t _write_r(struct _reent *r, int fd, void *buf, size_t len) {
|
|
if (fd == 1 || fd == 2) {
|
|
size_t i;
|
|
for (i = 0; i < len; i++) {
|
|
os_putc(((char *) buf)[i]);
|
|
}
|
|
return len;
|
|
}
|
|
return -1;
|
|
}
|
|
*/
|
|
|
|
/*
|
|
* You'll need to implement _open_r and friends if you want file operations. See
|
|
* https://github.com/cesanta/smart.js/blob/master/platforms/esp8266/user/esp_fs.c
|
|
* for SPIFFS-based implementation.
|
|
*/
|
|
|
|
void abort(void) __attribute__((no_instrument_function));
|
|
void abort(void) {
|
|
/* cause an unaligned access exception, that will drop you into gdb */
|
|
*(int *) 1 = 1;
|
|
while (1)
|
|
; /* avoid gcc warning because stdlib abort() has noreturn attribute */
|
|
}
|
|
|
|
void _exit(int status) {
|
|
abort();
|
|
}
|
|
|
|
int _gettimeofday_r(struct _reent *r, struct timeval *tp, void *tzp) {
|
|
uint32_t time = system_get_time();
|
|
tp->tv_sec = time / 1000000;
|
|
tp->tv_usec = time % 1000000;
|
|
return 0;
|
|
}
|
|
|
|
long int random(void) {
|
|
return os_random();
|
|
}
|