Crate os_core

Source
Expand description

§os_core

Core operating system functions

These work on Linux and OSX

Re-exports§

  • pub extern crate libc;

Modules§

  • OS related constants (typically C-style ‘defines’)
  • Operating system calls that work on OSX and Linux

Functions§

  • allocate raw program memory (atleast around the size of the system’s page-size (usually 4096); ie, not small allocations)
  • release raw program memory (unmanaged memory); ie, allocated with fn memory or fn sys_munmap