Subversion Repositories HelenOS

Rev

Rev 2238 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2238 Rev 2361
Line 40... Line 40...
40
#define ASID_MAX_ARCH       3   /* minimal required number */
40
#define ASID_MAX_ARCH       3   /* minimal required number */
41
 
41
 
42
typedef uint8_t asid_t;
42
typedef uint8_t asid_t;
43
 
43
 
44
 
44
 
45
#define asid_get()      ( ASID_START + 1 ) 
45
#define asid_get()      ( ASID_START + 1 )
46
  /* this works due to that this file is never included alone but only throught
46
/* this works due to fact that this file is never included alone but only
47
       "generic/include/mm/asid.h" where ASID_START is defined
47
    throught "generic/include/mm/asid.h" where ASID_START is defined
48
    */
48
    */
49
#define asid_put(asid) 
49
#define asid_put(asid) 
50
 
50
 
51
#endif
51
#endif
52
 
52