Pmap_resident_count was mistakenly removed from pmap.h, thereby

disabling the RSS listing in ps and ^T.  This commit re-inserts
the macro defn.
This commit is contained in:
John Dyson 1996-10-13 03:14:57 +00:00
parent 4b164f9ddd
commit 8de30f117f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18907
2 changed files with 4 additions and 0 deletions

View file

@ -181,6 +181,8 @@ struct pmap {
struct vm_page *pm_ptphint; /* pmap ptp hint */
};
#define pmap_resident_count(pmap) (pmap)->pm_stats.resident_count
#define PM_FLAG_LOCKED 0x1
#define PM_FLAG_WANTED 0x2

View file

@ -181,6 +181,8 @@ struct pmap {
struct vm_page *pm_ptphint; /* pmap ptp hint */
};
#define pmap_resident_count(pmap) (pmap)->pm_stats.resident_count
#define PM_FLAG_LOCKED 0x1
#define PM_FLAG_WANTED 0x2