~jakub/helenos/ia64-revival

« back to all changes in this revision

Viewing changes to kernel/genarch/include/mm/page_ht.h

  • Committer: Jakub Jermar
  • Date: 2012-02-18 16:47:38 UTC
  • mfrom: (527.1.874 HelenOS.mainline)
  • Revision ID: jakub@jermar.eu-20120218164738-abnijv1f5ckddwd9
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
#include <typedefs.h>
43
43
#include <mm/as.h>
44
44
#include <mm/page.h>
 
45
#include <mm/slab.h>
45
46
#include <synch/mutex.h>
46
47
#include <adt/hash_table.h>
47
48
 
63
64
extern as_operations_t as_ht_operations;
64
65
extern page_mapping_operations_t ht_mapping_operations;
65
66
 
 
67
extern slab_cache_t *pte_cache;
66
68
extern mutex_t page_ht_lock;
67
69
extern hash_table_t page_ht;
68
70
extern hash_table_operations_t ht_operations;