atari_stram.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _M68K_ATARI_STRAM_H
  2. #define _M68K_ATARI_STRAM_H
  3. /*
  4.  * Functions for Atari ST-RAM management
  5.  */
  6. /* public interface */
  7. void *atari_stram_alloc(long size, const char *owner);
  8. void atari_stram_free(void *);
  9. /* functions called internally by other parts of the kernel */
  10. void atari_stram_init(void);
  11. void atari_stram_reserve_pages(void *start_mem);
  12. void atari_stram_mem_init_hook (void);
  13. #endif /*_M68K_ATARI_STRAM_H */