2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2018-10-24 12:43:52 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2021-12-19 23:29:21 +03:30
|
|
|
#include <bits/wchar.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <stddef.h>
|
2018-10-31 02:09:11 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
#include <sys/types.h>
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
__BEGIN_DECLS
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2018-11-17 15:56:09 +01:00
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
|
|
2022-01-08 15:32:59 +01:00
|
|
|
__attribute__((noreturn)) void _abort(void);
|
2021-12-16 17:58:07 +01:00
|
|
|
|
2019-02-15 22:37:20 +01:00
|
|
|
__attribute__((malloc)) __attribute__((alloc_size(1))) void* malloc(size_t);
|
|
|
|
|
__attribute__((malloc)) __attribute__((alloc_size(1, 2))) void* calloc(size_t nmemb, size_t);
|
2022-01-12 10:54:09 +01:00
|
|
|
size_t malloc_size(void const*);
|
2021-05-15 10:06:41 +02:00
|
|
|
size_t malloc_good_size(size_t);
|
2020-12-24 08:41:54 -07:00
|
|
|
void serenity_dump_malloc_stats(void);
|
2018-10-24 12:43:52 +02:00
|
|
|
void free(void*);
|
2020-08-13 20:14:28 +03:00
|
|
|
__attribute__((alloc_size(2))) void* realloc(void* ptr, size_t);
|
LibC: Implement _aligned_malloc and _aligned_free
C++17 introduced aligned versions of `new` and `delete`, which are
automatically called by the compiler when allocating over-aligned
objects. As with the regular allocator functions, these are generally
thin wrappers around LibC.
We did not have support for aligned allocations in LibC, so this was not
possible. While libstdc++ has a fallback implementation, libc++ does
not, so the aligned allocation function was disabled internally. This
made building the LLVM port with Clang impossible.
Note that while the Microsoft docs say that aligned_malloc and
_aligned_free are declared in `malloc.h`, libc++ doesn't #include that
file, but instead relies on the definition coming from `stdlib.h`.
Therefore, I chose to declare it in that file instead of creating a new
LibC header.
I chose not to implement the more Unix-y `memalign`, `posix_memalign`,
or the C11 `aligned_alloc`, because that would require us to
significantly alter the memory allocator's internals. See the comment in
malloc.cpp.
2021-11-06 11:47:57 +01:00
|
|
|
__attribute__((malloc, alloc_size(1), alloc_align(2))) void* _aligned_malloc(size_t size, size_t alignment);
|
|
|
|
|
void _aligned_free(void* memblock);
|
2022-04-01 20:58:27 +03:00
|
|
|
char* getenv(char const* name);
|
|
|
|
|
char* secure_getenv(char const* name);
|
2019-02-26 12:57:02 +01:00
|
|
|
int putenv(char*);
|
2022-04-01 20:58:27 +03:00
|
|
|
int unsetenv(char const*);
|
2020-12-24 08:41:54 -07:00
|
|
|
int clearenv(void);
|
2022-04-01 20:58:27 +03:00
|
|
|
int setenv(char const* name, char const* value, int overwrite);
|
|
|
|
|
int serenity_setenv(char const* name, ssize_t name_length, char const* value, ssize_t value_length, int overwrite);
|
|
|
|
|
char const* getprogname(void);
|
|
|
|
|
void setprogname(char const*);
|
|
|
|
|
int atoi(char const*);
|
|
|
|
|
long atol(char const*);
|
|
|
|
|
long long atoll(char const*);
|
|
|
|
|
double strtod(char const*, char** endptr);
|
|
|
|
|
long double strtold(char const*, char** endptr);
|
|
|
|
|
float strtof(char const*, char** endptr);
|
|
|
|
|
long strtol(char const*, char** endptr, int base);
|
|
|
|
|
long long strtoll(char const*, char** endptr, int base);
|
|
|
|
|
unsigned long long strtoull(char const*, char** endptr, int base);
|
|
|
|
|
unsigned long strtoul(char const*, char** endptr, int base);
|
|
|
|
|
void qsort(void* base, size_t nmemb, size_t size, int (*compar)(void const*, void const*));
|
|
|
|
|
void qsort_r(void* base, size_t nmemb, size_t size, int (*compar)(void const*, void const*, void*), void* arg);
|
2022-01-08 15:32:59 +01:00
|
|
|
int atexit(void (*function)(void));
|
2019-02-15 22:37:20 +01:00
|
|
|
__attribute__((noreturn)) void exit(int status);
|
2022-01-08 15:32:59 +01:00
|
|
|
__attribute__((noreturn)) void abort(void);
|
2019-01-15 06:30:19 +01:00
|
|
|
char* ptsname(int fd);
|
|
|
|
|
int ptsname_r(int fd, char* buffer, size_t);
|
2019-01-23 06:35:34 +01:00
|
|
|
int abs(int);
|
2019-02-25 10:05:32 +01:00
|
|
|
long labs(long);
|
2021-04-28 16:17:06 -07:00
|
|
|
long long int llabs(long long int);
|
2022-04-01 20:58:27 +03:00
|
|
|
double atof(char const*);
|
|
|
|
|
int system(char const* command);
|
2019-02-08 02:38:21 +01:00
|
|
|
char* mktemp(char*);
|
2019-11-16 04:34:20 -06:00
|
|
|
int mkstemp(char*);
|
2019-09-12 08:43:52 -03:00
|
|
|
char* mkdtemp(char*);
|
2022-04-01 20:58:27 +03:00
|
|
|
void* bsearch(void const* key, void const* base, size_t nmemb, size_t size, int (*compar)(void const*, void const*));
|
2021-06-04 01:46:41 +02:00
|
|
|
int mblen(char const*, size_t);
|
2022-04-01 20:58:27 +03:00
|
|
|
size_t mbstowcs(wchar_t*, char const*, size_t);
|
|
|
|
|
int mbtowc(wchar_t*, char const*, size_t);
|
2019-10-12 22:47:25 -03:00
|
|
|
int wctomb(char*, wchar_t);
|
2022-04-01 20:58:27 +03:00
|
|
|
size_t wcstombs(char*, wchar_t const*, size_t);
|
|
|
|
|
char* realpath(char const* pathname, char* buffer);
|
2021-05-08 20:46:06 +02:00
|
|
|
__attribute__((noreturn)) void _Exit(int status);
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2019-01-14 15:25:34 +01:00
|
|
|
#define RAND_MAX 32767
|
2022-01-08 15:32:59 +01:00
|
|
|
int rand(void);
|
2019-01-14 15:25:34 +01:00
|
|
|
void srand(unsigned seed);
|
|
|
|
|
|
2022-01-08 15:32:59 +01:00
|
|
|
long int random(void);
|
2019-02-01 16:03:21 +01:00
|
|
|
void srandom(unsigned seed);
|
|
|
|
|
|
2020-12-24 08:41:54 -07:00
|
|
|
uint32_t arc4random(void);
|
2019-10-13 12:26:42 -03:00
|
|
|
void arc4random_buf(void*, size_t);
|
|
|
|
|
uint32_t arc4random_uniform(uint32_t);
|
|
|
|
|
|
2019-05-28 11:53:16 +02:00
|
|
|
typedef struct {
|
|
|
|
|
int quot;
|
|
|
|
|
int rem;
|
|
|
|
|
} div_t;
|
2019-02-05 13:38:32 +01:00
|
|
|
div_t div(int, int);
|
2019-05-28 11:53:16 +02:00
|
|
|
typedef struct {
|
|
|
|
|
long quot;
|
|
|
|
|
long rem;
|
|
|
|
|
} ldiv_t;
|
2019-02-05 13:38:32 +01:00
|
|
|
ldiv_t ldiv(long, long);
|
2021-03-07 18:09:44 +02:00
|
|
|
typedef struct {
|
|
|
|
|
long long quot;
|
|
|
|
|
long long rem;
|
|
|
|
|
} lldiv_t;
|
|
|
|
|
lldiv_t lldiv(long long, long long);
|
2019-02-05 13:38:32 +01:00
|
|
|
|
2020-02-05 21:17:41 +01:00
|
|
|
int posix_openpt(int flags);
|
|
|
|
|
int grantpt(int fd);
|
|
|
|
|
int unlockpt(int fd);
|
|
|
|
|
|
2022-05-03 13:01:14 +02:00
|
|
|
// FIXME: Remove the ifdef once we have a working memalign implementation.
|
|
|
|
|
// This is hidden by default until then because many applications prefer
|
|
|
|
|
// `posix_memalign` over other implementations of aligned memory.
|
|
|
|
|
#ifdef SERENITY_LIBC_SHOW_POSIX_MEMALIGN
|
2022-04-21 11:10:41 +02:00
|
|
|
int posix_memalign(void**, size_t alignment, size_t size);
|
2022-05-03 13:01:14 +02:00
|
|
|
#endif
|
2022-04-21 11:10:41 +02:00
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
__END_DECLS
|