[PATCH 6/9] libcsupport: Use pthread_once()
Sebastian Huber
sebastian.huber at embedded-brains.de
Fri Nov 14 13:46:32 UTC 2014
---
cpukit/libcsupport/src/pwdgrp.c | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/cpukit/libcsupport/src/pwdgrp.c b/cpukit/libcsupport/src/pwdgrp.c
index d8e1947..c10cbab 100644
--- a/cpukit/libcsupport/src/pwdgrp.c
+++ b/cpukit/libcsupport/src/pwdgrp.c
@@ -31,22 +31,21 @@
#include <string.h>
#include <limits.h>
#include <ctype.h>
+#include <pthread.h>
#include <rtems/seterr.h>
#include "pwdgrp.h"
+static pthread_once_t pwdgrp_once = PTHREAD_ONCE_INIT;
+
/**
* Initialize useable but dummy databases
*/
-void _libcsupport_pwdgrp_init(void)
+static void pwdgrp_init(void)
{
FILE *fp;
- static char etc_passwd_initted = 0;
- if (etc_passwd_initted)
- return;
- etc_passwd_initted = 1;
mkdir("/etc", 0777);
/*
@@ -76,6 +75,11 @@ void _libcsupport_pwdgrp_init(void)
}
}
+void _libcsupport_pwdgrp_init(void)
+{
+ pthread_once(&pwdgrp_once, pwdgrp_init);
+}
+
/**
* Extract a string value from the database
*/
--
1.8.4.5
More information about the devel
mailing list