~ubuntu-branches/ubuntu/hardy/apache2/hardy-proposed

« back to all changes in this revision

Viewing changes to srclib/apr/threadproc/win32/thread.c

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2008-01-17 20:27:56 UTC
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080117202756-hv38rjknhwa2ilwi
Tags: upstream-2.2.8
ImportĀ upstreamĀ versionĀ 2.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
     */
109
109
#ifndef _WIN32_WCE
110
110
    if ((handle = (HANDLE)_beginthreadex(NULL,
111
 
                        attr && attr->stacksize > 0 ? attr->stacksize : 0,
 
111
                        (DWORD) (attr ? attr->stacksize : 0),
112
112
                        (unsigned int (APR_THREAD_FUNC *)(void *))dummy_worker,
113
113
                        (*new), 0, &temp)) == 0) {
114
114
        return APR_FROM_OS_ERROR(_doserrno);