Changeset 624 for trunk/kernel/syscalls/sys_display.c
- Timestamp:
- Mar 12, 2019, 1:37:38 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_display.c
r623 r624 2 2 * sys_display.c - display the current state of a kernel structure on TXT0 3 3 * 4 * Author Alain Greiner (2016,2017,2018 )4 * Author Alain Greiner (2016,2017,2018, 2019) 5 5 * 6 6 * Copyright (c) UPMC Sorbonne Universites … … 24 24 #include <hal_kernel_types.h> 25 25 #include <hal_uspace.h> 26 #include <hal_vmm.h> 26 27 #include <errno.h> 27 28 #include <vmm.h> … … 167 168 if( cxy == local_cxy ) 168 169 { 169 vmm_display( process , true );170 hal_vmm_display( process , true ); 170 171 } 171 172 else 172 173 { 173 rpc_ vmm_display_client( cxy , process , true );174 rpc_hal_vmm_display_client( cxy , process , true ); 174 175 } 175 176
Note: See TracChangeset
for help on using the changeset viewer.