Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

22 wiersze
342 B

  1. #ifndef OS_IMPL_LINUX_CPP
  2. #define OS_IMPL_LINUX_CPP
  3. #include <sys/mman.h>
  4. #include <sys/stat.h>
  5. #include "os.h"
  6. void *os_alloc(size_t capacity) {
  7. return mmap(0, capacity, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
  8. }
  9. void os_reserve(void *ptr) {
  10. }
  11. void os_decommit(void *ptr) {
  12. }
  13. void os_free(void *ptr) {
  14. }
  15. #endif