* fhandler_tty.cc (fhandler_tty_common::__acquire_output_mutex): Use strace
method rather than accessing field directly. (fhandler_tty_common::__release_output_mutex): Ditto.
This commit is contained in:
parent
5d97040501
commit
b0cc168954
@ -1,3 +1,9 @@
|
|||||||
|
2005-12-29 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
|
* fhandler_tty.cc (fhandler_tty_common::__acquire_output_mutex): Use
|
||||||
|
strace method rather than accessing field directly.
|
||||||
|
(fhandler_tty_common::__release_output_mutex): Ditto.
|
||||||
|
|
||||||
2005-12-29 Christopher Faylor <cgf@timesys.com>
|
2005-12-29 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* child_info.h (CURR_CHILD_INFO_MAGIC): Reset.
|
* child_info.h (CURR_CHILD_INFO_MAGIC): Reset.
|
||||||
|
@ -118,7 +118,7 @@ fhandler_tty_common::__acquire_output_mutex (const char *fn, int ln,
|
|||||||
if (res == WAIT_OBJECT_0)
|
if (res == WAIT_OBJECT_0)
|
||||||
{
|
{
|
||||||
#ifndef DEBUGGING
|
#ifndef DEBUGGING
|
||||||
if (strace.active)
|
if (strace.active ())
|
||||||
strace.prntf (_STRACE_TERMIOS, fn, "(%d): tty output_mutex: acquired", ln, res);
|
strace.prntf (_STRACE_TERMIOS, fn, "(%d): tty output_mutex: acquired", ln, res);
|
||||||
#else
|
#else
|
||||||
ostack[osi].fn = fn;
|
ostack[osi].fn = fn;
|
||||||
@ -137,7 +137,7 @@ fhandler_tty_common::__release_output_mutex (const char *fn, int ln)
|
|||||||
if (ReleaseMutex (output_mutex))
|
if (ReleaseMutex (output_mutex))
|
||||||
{
|
{
|
||||||
#ifndef DEBUGGING
|
#ifndef DEBUGGING
|
||||||
if (strace.active)
|
if (strace.active ())
|
||||||
strace.prntf (_STRACE_TERMIOS, fn, "(%d): tty output_mutex released", ln);
|
strace.prntf (_STRACE_TERMIOS, fn, "(%d): tty output_mutex released", ln);
|
||||||
#else
|
#else
|
||||||
if (osi > 0)
|
if (osi > 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user