1 02/03/84 mhcs_
2
3
4 Entry points in mhcs_:
5 List is generated by the help command
6
7
8 :Entry: get_seg_usage: 02/03/84 mhcs_$get_seg_usage
9
10
11 Function: This entry point returns the number of page faults taken on
12 a segment since its creation.
13
14
15 Syntax:
16 declare mhcs_$get_seg_usage entry char* char* fixed bin35
17 fixed bin35;
18 call mhcs_$get_seg_usage dir_name entryname use code;
19
20
21 Arguments:
22 dir_name
23 is the directory containing the segment. Input
24 entryname
25 is the entry name of the segment. Input
26 use
27 is the page fault count. Output
28 code
29 is a standard status code. Output
30
31
32 Notes: This entry point works for segments only and cannot be used to
33 determine the page faults on a directory.
34
35
36 :Entry: get_seg_usage_ptr: 02/03/84 mhcs_$get_seg_usage_ptr
37
38
39 Function: This entry point works the same as mhcs_$get_seg_usage
40 except that it takes a pointer to the segment.
41
42
43 Syntax:
44 declare mhcs_$get_seg_usage_ptr entry ptr fixed bin35
45 fixed bin35;
46 call mhcs_$get_seg_usage_ptr s_ptr use code;
47
48
49 Arguments:
50 s_ptr
51 is a pointer to the segment. Input
52 use
53 is the page fault count. Output
54 code
55 is a standard status code. Output