* Makefile.in: Use all compile options when calculating magic values.

* shared_info.h (CURR_SHARED_MAGIC): Revert erroneous value.
* child_info.h (CURR_CHILD_INFO_MAGIC): Update.
* fhandler.h (acquire_output_mutex): Remove unneeded ';'.
(release_output_mutex): Ditto.
This commit is contained in:
Christopher Faylor
2009-04-05 16:49:15 +00:00
parent 66eaf280ac
commit 50b2715c77
5 changed files with 15 additions and 6 deletions

View File

@ -790,10 +790,10 @@ class fhandler_serial: public fhandler_base
};
#define acquire_output_mutex(ms) \
__acquire_output_mutex (__PRETTY_FUNCTION__, __LINE__, ms);
__acquire_output_mutex (__PRETTY_FUNCTION__, __LINE__, ms)
#define release_output_mutex() \
__release_output_mutex (__PRETTY_FUNCTION__, __LINE__);
__release_output_mutex (__PRETTY_FUNCTION__, __LINE__)
class tty;
class tty_min;