SysInfo.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #ifndef SysInfo_H
  16. #define SysInfo_H
  17. #include "memory/Allocator.h"
  18. #include "util/Assert.h"
  19. #include "util/Linker.h"
  20. Linker_require("util/SysInfo.c")
  21. #include <stdint.h>
  22. enum SysInfo_Os
  23. {
  24. SysInfo_Os_UNKNOWN,
  25. SysInfo_Os_LINUX,
  26. SysInfo_Os_SUNOS,
  27. SysInfo_Os_DARWIN,
  28. SysInfo_Os_FREEBSD,
  29. SysInfo_Os_WIN32
  30. };
  31. struct SysInfo
  32. {
  33. int seccomp : 1;
  34. int os : 4;
  35. };
  36. Assert_compileTime(sizeof(struct SysInfo) == 4);
  37. struct SysInfo SysInfo_detect(void);
  38. char* SysInfo_describe(struct SysInfo si, struct Allocator* alloc);
  39. #endif