~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Minix Cross Reference
Minix/mm/const.h


  1 /* Constants used by the Memory Manager. */
  2 
  3 #define NO_MEM ((phys_clicks) 0)  /* returned by alloc_mem() with mem is up */
  4 
  5 #if (CHIP == INTEL && _WORD_SIZE == 2)
  6 /* These definitions are used in size_ok and are not needed for 386.
  7  * The 386 segment granularity is 1 for segments smaller than 1M and 4096
  8  * above that.  
  9  */
 10 #define PAGE_SIZE         16    /* how many bytes in a page (s.b.HCLICK_SIZE)*/
 11 #define MAX_PAGES       4096    /* how many pages in the virtual addr space */
 12 #endif
 13 
 14 #define printf        printk
 15 
 16 #define INIT_PID           1    /* init's process id number */
 17 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.