SignalsPanel.h 471 B

1234567891011121314151617181920212223242526
  1. #ifndef HEADER_SignalsPanel
  2. #define HEADER_SignalsPanel
  3. /*
  4. htop - SignalsPanel.h
  5. (C) 2004-2011 Hisham H. Muhammad
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "Panel.h"
  10. #ifndef HTOP_SOLARIS
  11. #include <signal.h>
  12. #endif
  13. typedef struct SignalItem_ {
  14. const char* name;
  15. int number;
  16. } SignalItem;
  17. #define SIGNALSPANEL_INITSELECTEDSIGNAL SIGTERM
  18. Panel* SignalsPanel_new(int preSelectedSignal);
  19. #endif