File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -3067,12 +3067,6 @@ impl<C: Chip> ProcessType for Process<'a, C> {
3067
3067
flash_start
3068
3068
) ) ;
3069
3069
3070
- self . chip . userspace_kernel_boundary ( ) . process_detail_fmt (
3071
- self . sp ( ) ,
3072
- & self . stored_state . get ( ) ,
3073
- writer,
3074
- ) ;
3075
-
3076
3070
self . mpu_config . map ( |config| {
3077
3071
let _ = writer. write_fmt ( format_args ! ( "{}" , config) ) ;
3078
3072
} ) ;
@@ -3205,7 +3199,7 @@ impl<C: 'static + Chip> Process<'a, C> {
3205
3199
3206
3200
process. flash = slice:: from_raw_parts ( app_flash_address, app_flash_size) ;
3207
3201
3208
- process. stored_state = Cell :: new ( Default :: default ( ) ) ;
3202
+ // process.stored_state = Cell::new(Default::default());
3209
3203
process. state = Cell :: new ( State :: Unstarted ) ;
3210
3204
process. fault_response = fault_response;
3211
3205
@@ -3246,6 +3240,7 @@ impl<C: 'static + Chip> Process<'a, C> {
3246
3240
} ) ) ;
3247
3241
} ) ;
3248
3242
3243
+ /*
3249
3244
let mut stored_state = process.stored_state.get();
3250
3245
match chip.userspace_kernel_boundary().initialize_new_process(
3251
3246
process.sp(),
@@ -3263,6 +3258,7 @@ impl<C: 'static + Chip> Process<'a, C> {
3263
3258
return (None, app_flash_size, 0);
3264
3259
}
3265
3260
};
3261
+ */
3266
3262
3267
3263
kernel. increment_work ( ) ;
3268
3264
You can’t perform that action at this time.
0 commit comments