posix_lock.h 200 B

12345678910111213
  1. #ifndef POSIX_LOCK_H
  2. #define POSIX_LOCK_H
  3. #include "heap.h"
  4. void sbrk_lock(void);
  5. void sbrk_unlock(void);
  6. void posix_lock(heap_t *heap);
  7. void posix_unlock(heap_t *heap);
  8. #endif /* POSIX_LOCK_H */