Home | History | Annotate | Line # | Download | only in apple
      1 /* public domain */
      2 
      3 struct rtkit_state;
      4 
      5 struct rtkit_state *rtkit_init(int, const char *);
      6 int	rtkit_boot(struct rtkit_state *);
      7 int	rtkit_poll(struct rtkit_state *);
      8 int	rtkit_start_endpoint(struct rtkit_state *, uint32_t,
      9 	    void (*)(void *, uint64_t), void *);
     10 int	rtkit_send_endpoint(struct rtkit_state *, uint32_t, uint64_t);
     11