mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:37:46 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -11,17 +11,17 @@
|
|||
__BEGIN_DECLS
|
||||
|
||||
void* mmap(void* addr, size_t, int prot, int flags, int fd, off_t);
|
||||
void* mmap_with_name(void* addr, size_t, int prot, int flags, int fd, off_t, const char* name);
|
||||
void* serenity_mmap(void* addr, size_t, int prot, int flags, int fd, off_t, size_t alignment, const char* name);
|
||||
void* mmap_with_name(void* addr, size_t, int prot, int flags, int fd, off_t, char const* name);
|
||||
void* serenity_mmap(void* addr, size_t, int prot, int flags, int fd, off_t, size_t alignment, char const* name);
|
||||
void* mremap(void* old_address, size_t old_size, size_t new_size, int flags);
|
||||
int munmap(void*, size_t);
|
||||
int mprotect(void*, size_t, int prot);
|
||||
int set_mmap_name(void*, size_t, const char*);
|
||||
int set_mmap_name(void*, size_t, char const*);
|
||||
int madvise(void*, size_t, int advice);
|
||||
int posix_madvise(void*, size_t, int advice);
|
||||
void* allocate_tls(const char* initial_data, size_t);
|
||||
int mlock(const void*, size_t);
|
||||
int munlock(const void*, size_t);
|
||||
void* allocate_tls(char const* initial_data, size_t);
|
||||
int mlock(void const*, size_t);
|
||||
int munlock(void const*, size_t);
|
||||
int msync(void*, size_t, int flags);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue