summaryrefslogtreecommitdiff
path: root/threadproc
diff options
context:
space:
mode:
authorGuenter Knauf <fuankg@apache.org>2014-07-16 15:27:38 +0000
committerGuenter Knauf <fuankg@apache.org>2014-07-16 15:27:38 +0000
commit0dbe50a8436d856b724b1d1b2ce9db121828c7d6 (patch)
treefefaf506624ef7060da7265c1a04cd259a12dcbc /threadproc
parent678456a743b12a70ba0003567deb0634f12ed9d1 (diff)
downloadapr-0dbe50a8436d856b724b1d1b2ce9db121828c7d6.tar.gz
Fixed indent - no code change.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1611050 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc')
-rw-r--r--threadproc/netware/thread.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/threadproc/netware/thread.c b/threadproc/netware/thread.c
index a34bada9b..a37b107a0 100644
--- a/threadproc/netware/thread.c
+++ b/threadproc/netware/thread.c
@@ -122,22 +122,21 @@ apr_status_t apr_thread_create(apr_thread_t **new,
}
(*new)->ctx = NXContextAlloc(
- /* void(*start_routine)(void *arg)*/(void (*)(void *)) dummy_worker,
- /* void *arg */ (*new),
- /* int priority */ NX_PRIO_MED,
- /* size_t stackSize */ stack_size,
- /* unsigned long flags */ NX_CTX_NORMAL,
- /* int *error */ &stat);
-
+ /* void(*start_routine)(void *arg) */ (void (*)(void *)) dummy_worker,
+ /* void *arg */ (*new),
+ /* int priority */ NX_PRIO_MED,
+ /* size_t stackSize */ stack_size,
+ /* unsigned long flags */ NX_CTX_NORMAL,
+ /* int *error */ &stat);
stat = NXContextSetName(
- /* NXContext_t ctx */ (*new)->ctx,
- /* const char *name */ threadName);
+ /* NXContext_t ctx */ (*new)->ctx,
+ /* const char *name */ threadName);
stat = NXThreadCreate(
- /* NXContext_t context */ (*new)->ctx,
- /* unsigned long flags */ flags,
- /* NXThreadId_t *thread_id */ &(*new)->td);
+ /* NXContext_t context */ (*new)->ctx,
+ /* unsigned long flags */ flags,
+ /* NXThreadId_t *thread_id */ &(*new)->td);
if (stat == 0)
return APR_SUCCESS;