summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_mutexdestroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/sched/pthread_mutexdestroy.c')
-rw-r--r--nuttx/sched/pthread_mutexdestroy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/sched/pthread_mutexdestroy.c b/nuttx/sched/pthread_mutexdestroy.c
index fa78fe82b..f66358534 100644
--- a/nuttx/sched/pthread_mutexdestroy.c
+++ b/nuttx/sched/pthread_mutexdestroy.c
@@ -2,7 +2,7 @@
* sched/pthread_mutexdestroy.c
*
* Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -44,6 +44,7 @@
#include <sched.h>
#include <errno.h>
#include <debug.h>
+
#include "pthread_internal.h"
/****************************************************************************
@@ -71,7 +72,7 @@
****************************************************************************/
/****************************************************************************
- * Function: pthread_mutex_destroy
+ * Name: pthread_mutex_destroy
*
* Description:
* Destroy a mutex.
@@ -121,6 +122,7 @@ int pthread_mutex_destroy(FAR pthread_mutex_t *mutex)
ret = EINVAL;
}
}
+
sched_unlock();
}