diff options
-rw-r--r-- | runtime/transport/ChangeLog | 5 | ||||
-rw-r--r-- | runtime/transport/transport.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog index d76b4aa3..8f9cccfe 100644 --- a/runtime/transport/ChangeLog +++ b/runtime/transport/ChangeLog @@ -1,3 +1,8 @@ +2005-05-17 Martin Hunt <hunt@redhat.com> + + * transport.c (_stp_transport_close): Call stp_exit_helper() + directly instead of using work queue. + 2005-05-16 Martin Hunt <hunt@redhat.com> * transport.c (_stp_cmd_handler): For STP_EXIT, schedule a diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c index 7142237f..8ce97bff 100644 --- a/runtime/transport/transport.c +++ b/runtime/transport/transport.c @@ -132,7 +132,7 @@ void _stp_transport_close() if (!_stp_streaming()) _stp_relayfs_close(t->chan, t->dir); - schedule_work (&stp_exit); + stp_exit_helper (&t->pid); kfree(t); } |