jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4KB

  1. // ----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 2012 Fons Adriaensen <fons@linuxaudio.org>
  4. //
  5. // This program is free software; you can redistribute it and/or modify
  6. // it under the terms of the GNU General Public License as published by
  7. // the Free Software Foundation; either version 3 of the License, or
  8. // (at your option) any later version.
  9. //
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. // GNU General Public License for more details.
  14. //
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. //
  18. // ----------------------------------------------------------------------------
  19. #ifndef __PXTHREAD_H
  20. #define __PXTHREAD_H
  21. #include <sys/types.h>
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <stdarg.h>
  25. #include <assert.h>
  26. #include <errno.h>
  27. #include <pthread.h>
  28. class Pxthread
  29. {
  30. public:
  31. Pxthread (void);
  32. virtual ~Pxthread (void);
  33. Pxthread (const Pxthread&);
  34. Pxthread& operator=(const Pxthread&);
  35. virtual void thr_main (void) = 0;
  36. virtual int thr_start (int policy, int priority, size_t stacksize = 0);
  37. private:
  38. pthread_t _thrid;
  39. };
  40. #endif