diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/w32-io.c | 12 | 
2 files changed, 17 insertions, 0 deletions
| diff --git a/src/ChangeLog b/src/ChangeLog index 5664e449..f718502a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,10 @@  2010-11-23  Marcus Brinkmann  <[email protected]> +	* w32-io.c (create_reader, create_writer): Use small stack size on +	Windows CE. + +2010-11-23  Marcus Brinkmann  <[email protected]> +  	* gpgme.h.in (gpgme_conf_arg_new): Make VALUE arg const void *.  	* gpgconf.c (_gpgme_conf_arg_new): Likewise.  	(gpgme_conf_arg_new): Likewise. diff --git a/src/w32-io.c b/src/w32-io.c index 6f732030..168177e5 100644 --- a/src/w32-io.c +++ b/src/w32-io.c @@ -464,7 +464,13 @@ create_reader (int fd)    ctx->have_data_ev = set_synchronize (ctx->have_data_ev);    INIT_LOCK (ctx->mutex); +#ifdef HAVE_W32CE_SYSTEM +  ctx->thread_hd = CreateThread (&sec_attr, 64 * 1024, reader, ctx, +				 STACK_SIZE_PARAM_IS_A_RESERVATION, &tid); +#else    ctx->thread_hd = CreateThread (&sec_attr, 0, reader, ctx, 0, &tid); +#endif +    if (!ctx->thread_hd)      {        TRACE_LOG1 ("CreateThread failed: ec=%d", (int) GetLastError ()); @@ -824,7 +830,13 @@ create_writer (int fd)    ctx->is_empty = set_synchronize (ctx->is_empty);    INIT_LOCK (ctx->mutex); +#ifdef HAVE_W32CE_SYSTEM +  ctx->thread_hd = CreateThread (&sec_attr, 64 * 1024, writer, ctx, +				 STACK_SIZE_PARAM_IS_A_RESERVATION, &tid); +#else    ctx->thread_hd = CreateThread (&sec_attr, 0, writer, ctx, 0, &tid ); +#endif +    if (!ctx->thread_hd)      {        TRACE_LOG1 ("CreateThread failed: ec=%d", (int) GetLastError ()); | 
