setproctitle.pxd 355 B

1234567891011121314151617
  1. from libcpp.string cimport string as c_string
  2. cdef extern from *:
  3. """
  4. extern "C" {
  5. #include "ray/thirdparty/setproctitle/spt_setup.h"
  6. }
  7. """
  8. int spt_setup()
  9. cdef extern from *:
  10. """
  11. extern "C" {
  12. #include "ray/thirdparty/setproctitle/spt_status.h"
  13. }
  14. """
  15. void set_ps_display(const char *activity, bint force)