serenity.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <Kernel/API/POSIX/futex.h>
  8. #include <Kernel/API/POSIX/serenity.h>
  9. #include <stdio.h>
  10. #include <time.h>
  11. #include <unistd.h>
  12. __BEGIN_DECLS
  13. int disown(pid_t);
  14. int profiling_enable(pid_t, uint64_t);
  15. int profiling_disable(pid_t);
  16. int profiling_free_buffer(pid_t);
  17. int futex(uint32_t* userspace_address, int futex_op, uint32_t value, const struct timespec* timeout, uint32_t* userspace_address2, uint32_t value3);
  18. #ifndef ALWAYS_INLINE
  19. # define ALWAYS_INLINE inline __attribute__((always_inline))
  20. # define ALWAYS_INLINE_SERENITY_H
  21. #endif
  22. static ALWAYS_INLINE int futex_wait(uint32_t* userspace_address, uint32_t value, const struct timespec* abstime, int clockid)
  23. {
  24. int op;
  25. if (abstime) {
  26. // NOTE: FUTEX_WAIT takes a relative timeout, so use FUTEX_WAIT_BITSET instead!
  27. op = FUTEX_WAIT_BITSET;
  28. if (clockid == CLOCK_REALTIME || clockid == CLOCK_REALTIME_COARSE)
  29. op |= FUTEX_CLOCK_REALTIME;
  30. } else {
  31. op = FUTEX_WAIT;
  32. }
  33. return futex(userspace_address, op, value, abstime, NULL, FUTEX_BITSET_MATCH_ANY);
  34. }
  35. static ALWAYS_INLINE int futex_wake(uint32_t* userspace_address, uint32_t count)
  36. {
  37. return futex(userspace_address, FUTEX_WAKE, count, NULL, NULL, 0);
  38. }
  39. #ifdef ALWAYS_INLINE_SERENITY_H
  40. # undef ALWAYS_INLINE
  41. #endif
  42. int purge(int mode);
  43. int perf_event(int type, uintptr_t arg1, uintptr_t arg2);
  44. int perf_register_string(char const* string, size_t string_length);
  45. int get_stack_bounds(uintptr_t* user_stack_base, size_t* user_stack_size);
  46. int anon_create(size_t size, int options);
  47. int serenity_readlink(char const* path, size_t path_length, char* buffer, size_t buffer_size);
  48. int getkeymap(char* name_buffer, size_t name_buffer_size, uint32_t* map, uint32_t* shift_map, uint32_t* alt_map, uint32_t* altgr_map, uint32_t* shift_altgr_map);
  49. int setkeymap(char const* name, uint32_t const* map, uint32_t* const shift_map, uint32_t const* alt_map, uint32_t const* altgr_map, uint32_t const* shift_altgr_map);
  50. uint16_t internet_checksum(void const* ptr, size_t count);
  51. int emuctl(uintptr_t command, uintptr_t arg0, uintptr_t arg1);
  52. int serenity_open(char const* path, size_t path_length, int options, ...);
  53. __END_DECLS