diff options
Diffstat (limited to 'lib/isc/task_p.h')
| -rw-r--r-- | lib/isc/task_p.h | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/isc/task_p.h b/lib/isc/task_p.h index 85deeae0d0ea5..8c1e4c52fa4c0 100644 --- a/lib/isc/task_p.h +++ b/lib/isc/task_p.h @@ -1,5 +1,5 @@  /* - * Copyright (C) 2004, 2005, 2007, 2009, 2012  Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2004, 2005, 2007, 2009, 2011, 2012  Internet Systems Consortium, Inc. ("ISC")   * Copyright (C) 2000, 2001  Internet Software Consortium.   *   * Permission to use, copy, modify, and/or distribute this software for any @@ -22,10 +22,18 @@  /*! \file */ +#if defined(BIND9) && defined(ISC_PLATFORM_USETHREADS) +void +isc__taskmgr_pause(isc_taskmgr_t *taskmgr); + +void +isc__taskmgr_resume(isc_taskmgr_t *taskmgr); +#else  isc_boolean_t  isc__taskmgr_ready(isc_taskmgr_t *taskmgr);  isc_result_t  isc__taskmgr_dispatch(isc_taskmgr_t *taskmgr); +#endif /* !BIND9 || !ISC_PLATFORM_USETHREADS */  #endif /* ISC_TASK_P_H */  | 
