diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-08-10 12:42:53 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-08-10 12:42:53 +0000 |
commit | 2f77f8274639887ee5bf8b836d1f09fde83b0963 (patch) | |
tree | b52cb8214de58cb0aa0baf83a03092ae2156bb90 | |
parent | 9451f55bacfd9492c569d5907924c0d6a1bfa154 (diff) | |
download | ATCD-2f77f8274639887ee5bf8b836d1f09fde83b0963.tar.gz |
Wed Aug 10 12:41:18 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-macros.h:
Enable ACE_HAS_REACTOR_NOTIFICATION_QUEUE by default, it gives
much better performance and also doesn't suffer the issue that them
reactor queue can get full
-rw-r--r-- | ACE/ChangeLog | 7 | ||||
-rw-r--r-- | ACE/ace/config-macros.h | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index 82ac1154754..bb1f2401d2d 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,10 @@ +Wed Aug 10 12:41:18 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl> + + * ace/config-macros.h: + Enable ACE_HAS_REACTOR_NOTIFICATION_QUEUE by default, it gives + much better performance and also doesn't suffer the issue that them + reactor queue can get full + Wed Aug 10 12:18:56 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl> * ace/Notification_Queue.inl: diff --git a/ACE/ace/config-macros.h b/ACE/ace/config-macros.h index 3f8efffcc44..22b544286ca 100644 --- a/ACE/ace/config-macros.h +++ b/ACE/ace/config-macros.h @@ -501,4 +501,8 @@ extern "C" u_long CLS##_Export _get_dll_unload_policy (void) \ # define ACE_DEPRECATED #endif +#ifndef ACE_HAS_REACTOR_NOTIFICATION_QUEUE +# define ACE_HAS_REACTOR_NOTIFICATION_QUEUE +#endif + #endif /* ACE_CONFIG_MACROS_H */ |