Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
f23c7c71
Commit
f23c7c71
authored
Feb 15, 2003
by
Kurt Zeilenga
Browse files
set stack size
parent
1ceed99b
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/libldap_r/thr_thr.c
View file @
f23c7c71
...
...
@@ -57,9 +57,8 @@ ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
void
*
(
*
start_routine
)(
void
*
),
void
*
arg
)
{
return
(
thr_create
(
NULL
,
0
,
start_routine
,
arg
,
detach
?
THR_DETACHED
:
0
,
thread
)
);
return
(
thr_create
(
NULL
,
LDAP_PVT_THREAD_STACK_SIZE
,
start_routine
,
arg
,
detach
?
THR_DETACHED
:
0
,
thread
)
);
}
void
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment