a998f6b981
Release / release (push) Successful in 8s
## Summary Standardize naming conventions across the entire wizapp-stdlib codebase by replacing inconsistent prefixes and snake_case with a unified `wp` prefix + CamelCase scheme. ## Changes ### Naming convention applied | Pattern | Before | After | |---|---|---| | Public functions | `wapp_module_function` | `wpModuleFunction` | | Public types | `GenericXxx`, bare `Xxx` | `WpXxx` | | Constants / enum values | `WAPP_XXX`, `SHELL_XXX` | `WP_XXX`, `WP_SHELL_XXX` | | Internal functions | `_module_function` | `_moduleFunction` | | Storage-class macros | `wapp_extern`, `wapp_intern` | `wp_extern`, `wp_intern` | ### Modules affected All 20 modules were renamed: `arena`, `array`, `dbl_list`, `queue`, `str8`, `mem_allocator`, `mem_utils`, `mem_os`, `file`, `cpath`, `log`, `shell_commander`, `shell_termcolour`, `shell_utils`, `prng/xorshift`, `uuid`, `tester`, `aliases`, `assert`, `misc_utils`, `platform` — plus their test files. ### Backward compatibility Added `src/oldnames.h` with `#define OLD_NAME NEW_NAME` for every renamed symbol, organized by module under Constants → Types → Functions sections. Existing code that includes this file will compile without changes. Reviewed-on: #12 Co-authored-by: Abdelrahman <said.abdelrahman89@gmail.com> Co-committed-by: Abdelrahman <said.abdelrahman89@gmail.com>
37 lines
1.0 KiB
C
37 lines
1.0 KiB
C
// vim:fileencoding=utf-8:foldmethod=marker
|
|
|
|
#include "../../../common/aliases/aliases.h"
|
|
#include "../../../common/platform/platform.h"
|
|
|
|
#ifdef WP_PLATFORM_POSIX
|
|
|
|
#include "mem_os_posix.h"
|
|
#include "../mem_os_ops.h"
|
|
#include <sys/mman.h>
|
|
|
|
wp_intern const i32 access_types[] = {
|
|
[WP_MEM_ACCESS_NONE] = PROT_NONE,
|
|
[WP_MEM_ACCESS_READ_ONLY] = PROT_READ,
|
|
[WP_MEM_ACCESS_EXEC_ONLY] = PROT_EXEC,
|
|
[WP_MEM_ACCESS_READ_WRITE] = PROT_READ | PROT_WRITE,
|
|
[WP_MEM_ACCESS_READ_EXEC] = PROT_READ | PROT_EXEC,
|
|
[WP_MEM_ACCESS_READ_WRITE_EXEC] = PROT_READ | PROT_WRITE | PROT_EXEC,
|
|
};
|
|
|
|
void *_osMemAllocate(void *addr, u64 size, WpMemAccess access, WpMemAllocFlags flags, WpMemInitType type) {
|
|
(void)type;
|
|
i32 alloc_flags = flags | MAP_ANON | MAP_PRIVATE;
|
|
|
|
#if defined(WP_PLATFORM_LINUX) || defined(WP_PLATFORM_GNU) || defined(WP_PLATFORM_NET_BSD)
|
|
alloc_flags |= MAP_NORESERVE;
|
|
#endif
|
|
|
|
return mmap(addr, size, access_types[access], alloc_flags, -1, 0);
|
|
}
|
|
|
|
void _osMemFree(void *ptr, u64 size) {
|
|
munmap(ptr, size);
|
|
}
|
|
|
|
#endif // !WP_PLATFORM_POSIX
|