cmp.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __CMP_H
  2. #define __CMP_H
  3. struct cmp_mpr {
  4. u32 nplugs:5;
  5. u32 reserved:3;
  6. u32 persistent_ext:8;
  7. u32 non_persistent_ext:8;
  8. u32 bcast_channel_base:6;
  9. u32 rate:2;
  10. } __attribute__((packed));
  11. struct cmp_pcr {
  12. u32 payload:10;
  13. u32 overhead:4;
  14. u32 speed:2;
  15. u32 channel:6;
  16. u32 reserved:2;
  17. u32 p2p_count:6;
  18. u32 bcast_count:1;
  19. u32 online:1;
  20. } __attribute__((packed));
  21. struct cmp_pcr *cmp_register_opcr(struct hpsb_host *host, int plug,
  22.   int payload,
  23.   void (*update)(struct cmp_pcr *plug,
  24.  void *data),
  25.   void *data);
  26. void cmp_unregister_opcr(struct hpsb_host *host, struct cmp_pcr *plug);
  27. #endif /* __CMP_H */