NetBSDProcess.h 649 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef HEADER_NetBSDProcess
  2. #define HEADER_NetBSDProcess
  3. /*
  4. htop - NetBSDProcess.h
  5. (C) 2015 Hisham H. Muhammad
  6. (C) 2015 Michael McConville
  7. (C) 2021 Santhosh Raju
  8. (C) 2021 htop dev team
  9. Released under the GNU GPLv2+, see the COPYING file
  10. in the source distribution for its full text.
  11. */
  12. #include <stdbool.h>
  13. #include "Machine.h"
  14. #include "Object.h"
  15. #include "Process.h"
  16. typedef struct NetBSDProcess_ {
  17. Process super;
  18. } NetBSDProcess;
  19. extern const ProcessClass NetBSDProcess_class;
  20. extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
  21. Process* NetBSDProcess_new(const Machine* host);
  22. void Process_delete(Object* cast);
  23. #endif