Changeset ce031f0 in mainline for include/mm/tlb.h
- Timestamp:
- 2005-10-04T11:23:21Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e3f47b3
- Parents:
- 1e2aecca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mm/tlb.h
r1e2aecca rce031f0 30 30 #define __TLB_H__ 31 31 32 extern void tlb_init(void); 33 32 34 #ifdef __SMP__ 33 extern void tlb_init(void);34 35 extern void tlb_shootdown_start(void); 35 36 extern void tlb_shootdown_finalize(void); 36 37 extern void tlb_shootdown_ipi_recv(void); 37 38 #else 38 39 #define tlb_init() ; 40 #define tlb_shootdown_start() ; 41 #define tlb_shootdown_finalize() ; 42 #define tlb_shootdown_ipi_recv() ; 43 39 # define tlb_shootdown_start() ; 40 # define tlb_shootdown_finalize() ; 41 # define tlb_shootdown_ipi_recv() ; 44 42 #endif /* __SMP__ */ 45 43 46 44 /* Export TLB interface that each architecture must implement. */ 45 extern void tlb_init_arch(void); 47 46 extern void tlb_invalidate(int asid); 48 47 extern void tlb_shootdown_ipi_send(void);
Note:
See TracChangeset
for help on using the changeset viewer.