@@ -435,9 +435,8 @@ static int hyper_setup_stdio_events(struct hyper_exec *exec, struct stdio_config
435435 }
436436 }
437437
438- fprintf (stdout , "hyper_init_event container pts event %p, ops %p, fd %d\n" ,
439- & exec -> stdinev , & in_ops , exec -> stdinev .fd );
440-
438+ fprintf (stdout , "hyper_init_event exec stdin event %p, ops %p, fd %d\n" ,
439+ & exec -> stdinev , & in_ops , io -> stdinevfd );
441440 exec -> stdinev .fd = io -> stdinevfd ;
442441 if (hyper_init_event (& exec -> stdinev , & in_ops , NULL ) < 0 ||
443442 hyper_add_event (ctl .efd , & exec -> stdinev , EPOLLOUT ) < 0 ) {
@@ -446,6 +445,8 @@ static int hyper_setup_stdio_events(struct hyper_exec *exec, struct stdio_config
446445 }
447446 exec -> ref ++ ;
448447
448+ fprintf (stdout , "hyper_init_event exec stdout event %p, ops %p, fd %d\n" ,
449+ & exec -> stdoutev , & out_ops , io -> stdoutevfd );
449450 exec -> stdoutev .fd = io -> stdoutevfd ;
450451 if (hyper_init_event (& exec -> stdoutev , & out_ops , NULL ) < 0 ||
451452 hyper_add_event (ctl .efd , & exec -> stdoutev , EPOLLIN ) < 0 ) {
@@ -454,6 +455,8 @@ static int hyper_setup_stdio_events(struct hyper_exec *exec, struct stdio_config
454455 }
455456 exec -> ref ++ ;
456457
458+ fprintf (stdout , "hyper_init_event exec stderr event %p, ops %p, fd %d\n" ,
459+ & exec -> stderrev , & err_ops , io -> stderrevfd );
457460 exec -> stderrev .fd = io -> stderrevfd ;
458461 if (hyper_init_event (& exec -> stderrev , & err_ops , NULL ) < 0 ||
459462 hyper_add_event (ctl .efd , & exec -> stderrev , EPOLLIN ) < 0 ) {
0 commit comments