Skip to content
Snippets Groups Projects
Commit c32dcd63 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fixup begin/end declaration tags

Assume portable.h has been included
Include ldap_cdefs.h at the top.
parent 07f566e7
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
#ifndef _LDAP_PVT_THREAD_H
#define _LDAP_PVT_THREAD_H
#include "portable.h"
#include "ldap_cdefs.h"
#if defined( HAVE_PTHREADS )
/**********************************
......@@ -133,6 +133,8 @@ LDAP_END_DECL
#include <windows.h>
#include <process.h>
LDAP_BEGIN_DECL
typedef HANDLE ldap_pvt_thread_t;
typedef int ldap_pvt_thread_attr_t;
typedef HANDLE ldap_pvt_thread_mutex_t;
......@@ -143,6 +145,8 @@ typedef int ldap_pvt_thread_condattr_t;
#define LDAP_PVT_THREAD_CREATE_DETACHED 0
#define LDAP_PVT_THREAD_CREATE_JOINABLE 0
LDAP_END_DECL
#else
/***********************************
......@@ -176,6 +180,8 @@ LDAP_END_DECL
# define HAVE_THREADS 1
#endif
LDAP_BEGIN_DECL
LDAP_F int
ldap_pvt_thread_create LDAP_P(( ldap_pvt_thread_t * thread,
ldap_pvt_thread_attr_t *attr,
......@@ -232,8 +238,6 @@ ldap_pvt_thread_mutex_lock LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
LDAP_F int
ldap_pvt_thread_mutex_unlock LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
#include <ldap_cdefs.h>
typedef struct ldap_pvt_thread_rdwr_var {
int readers_reading;
int writer_writing;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment