2016-10-25 14:12:07 +00:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
2019-04-01 07:21:12 +00:00
|
|
|
#include <stdlib.h>
|
2016-10-25 14:12:07 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/reent.h>
|
2017-09-05 09:29:57 +00:00
|
|
|
|
2016-10-25 14:12:07 +00:00
|
|
|
|
|
|
|
int _system_r(struct _reent *r, const char *str)
|
|
|
|
{
|
|
|
|
__errno_r(r) = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-07-31 09:08:04 +00:00
|
|
|
int _raise_r(struct _reent *r, int sig)
|
2016-10-25 14:12:07 +00:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void* _sbrk_r(struct _reent *r, ptrdiff_t sz)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
int _getpid_r(struct _reent *r)
|
|
|
|
{
|
|
|
|
__errno_r(r) = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int _kill_r(struct _reent *r, int pid, int sig)
|
|
|
|
{
|
|
|
|
__errno_r(r) = ENOSYS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _exit(int __status)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2019-04-01 07:21:12 +00:00
|
|
|
/* No-op function, used to force linking this file,
|
|
|
|
instead of the syscalls implementation from libgloss.
|
|
|
|
*/
|
2019-07-16 09:33:30 +00:00
|
|
|
void newlib_include_syscalls_impl(void)
|
2019-04-01 07:21:12 +00:00
|
|
|
{
|
|
|
|
}
|