'who', indicating caller number in pm and fs and some other servers, has been removed in favour of 'who_e' (endpoint) and 'who_p' (proc nr.). In both PM and FS, isokendpt() convert endpoints to process slot numbers, returning OK if it was a valid and consistent endpoint number. okendpt() does the same but panic()s if it doesn't succeed. (In PM, this is pm_isok..) pm and fs keep their own records of process endpoints in their proc tables, which are needed to make kernel calls about those processes. message field names have changed. fs drivers are endpoints. fs now doesn't try to get out of driver deadlock, as the protocol isn't supposed to let that happen any more. (A warning is printed if ELOCKED is detected though.) fproc[].fp_task (indicating which driver the process is suspended on) became an int. PM and FS now get endpoint numbers of initial boot processes from the kernel. These happen to be the same as the old proc numbers, to let user processes reach them with the old numbers, but FS and PM don't know that. All new processes after INIT, even after the generation number wraps around, get endpoint numbers with generation 1 and higher, so the first instances of the boot processes are the only processes ever to have endpoint numbers in the old proc number range. More return code checks of sys_* functions have been added. IS has become endpoint-aware. Ditched the 'text' and 'data' fields in the kernel dump (which show locations, not sizes, so aren't terribly useful) in favour of the endpoint number. Proc number is still visible. Some other dumps (e.g. dmap, rs) show endpoint numbers now too which got the formatting changed. PM reading segments using rw_seg() has changed - it uses other fields in the message now instead of encoding the segment and process number and fd in the fd field. For that it uses _read_pm() and _write_pm() which to _taskcall()s directly in pm/misc.c. PM now sys_exit()s itself on panic(), instead of sys_abort(). RS also talks in endpoints instead of process numbers.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* The following names are synonyms for the variables in the input message. */
 | 
						|
#define acc_time      m2_l1
 | 
						|
#define addr	      m1_i3
 | 
						|
#define buffer	      m1_p1
 | 
						|
#define child_endpt      m1_i2
 | 
						|
#define co_mode	      m1_i1
 | 
						|
#define eff_grp_id    m1_i3
 | 
						|
#define eff_user_id   m1_i3
 | 
						|
#define erki          m1_p1
 | 
						|
#define fd	      m1_i1
 | 
						|
#define fd2	      m1_i2
 | 
						|
#define ioflags       m1_i3
 | 
						|
#define group	      m1_i3
 | 
						|
#define real_grp_id   m1_i2
 | 
						|
#define ls_fd	      m2_i1
 | 
						|
#define mk_mode	      m1_i2
 | 
						|
#define mk_z0	      m1_i3
 | 
						|
#define mode	      m3_i2
 | 
						|
#define c_mode        m1_i3
 | 
						|
#define c_name        m1_p1
 | 
						|
#define name	      m3_p1
 | 
						|
#define name1	      m1_p1
 | 
						|
#define name2	      m1_p2
 | 
						|
#define	name_length   m3_i1
 | 
						|
#define name1_length  m1_i1
 | 
						|
#define name2_length  m1_i2
 | 
						|
#define nbytes        m1_i2
 | 
						|
#define owner	      m1_i2
 | 
						|
#define parent_endpt      m1_i1
 | 
						|
#define pathname      m3_ca1
 | 
						|
#define pid	      m1_i3
 | 
						|
#define ENDPT	      m1_i1
 | 
						|
#define ctl_req       m4_l1
 | 
						|
#define driver_nr     m4_l2
 | 
						|
#define dev_nr	      m4_l3
 | 
						|
#define dev_style     m4_l4
 | 
						|
#define rd_only	      m1_i3
 | 
						|
#define real_user_id  m1_i2
 | 
						|
#define request       m1_i2
 | 
						|
#define sig	      m1_i2
 | 
						|
#define endpt1	      m1_i1
 | 
						|
#define tp	      m2_l1
 | 
						|
#define utime_actime  m2_l1
 | 
						|
#define utime_modtime m2_l2
 | 
						|
#define utime_file    m2_p1
 | 
						|
#define utime_length  m2_i1
 | 
						|
#define utime_strlen  m2_i2
 | 
						|
#define whence	      m2_i2
 | 
						|
#define svrctl_req    m2_i1
 | 
						|
#define svrctl_argp   m2_p1
 | 
						|
#define pm_stime      m1_i1
 | 
						|
#define info_what     m1_i1
 | 
						|
#define info_where    m1_p1
 | 
						|
 | 
						|
/* The following names are synonyms for the variables in the output message. */
 | 
						|
#define reply_type    m_type
 | 
						|
#define reply_l1      m2_l1
 | 
						|
#define reply_i1      m1_i1
 | 
						|
#define reply_i2      m1_i2
 | 
						|
#define reply_t1      m4_l1
 | 
						|
#define reply_t2      m4_l2
 | 
						|
#define reply_t3      m4_l3
 | 
						|
#define reply_t4      m4_l4
 | 
						|
#define reply_t5      m4_l5
 |