1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Move struct definition out of the header file since it is only used in this source file

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@687819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sander Temme
2008-08-21 18:19:21 +00:00
parent 6963f05653
commit e35f22e5a5
2 changed files with 8 additions and 10 deletions

View File

@@ -462,16 +462,6 @@ typedef struct {
const char *szUserName;
} SSLDirConfigRec;
/**
* Dynamic lock structure
*/
struct CRYPTO_dynlock_value {
apr_pool_t *pool;
const char* file;
int line;
apr_thread_mutex_t *mutex;
};
/**
* function prototypes
*/

View File

@@ -351,6 +351,14 @@ static void ssl_util_thr_lock(int mode, int type,
}
}
/* Dynamic lock structure */
struct CRYPTO_dynlock_value {
apr_pool_t *pool;
const char* file;
int line;
apr_thread_mutex_t *mutex;
};
/* Global reference to the pool passed into ssl_util_thread_setup() */
apr_pool_t *dynlockpool = NULL;