summaryrefslogtreecommitdiff
path: root/lib/spawnattr_getschedpolicy.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2008-09-28 14:02:21 +0200
committerBruno Haible <bruno@clisp.org>2008-09-28 14:02:21 +0200
commita5ca560fc2c96a9ac5723c2389fbf1d883c863b8 (patch)
treee2b95e05b47c39fdf42aa3a31338ff1a4dfe6b9d /lib/spawnattr_getschedpolicy.c
parent84d81c6ca86c3cf207ad2e8b30159fab49599f1b (diff)
downloadgnulib-a5ca560fc2c96a9ac5723c2389fbf1d883c863b8.tar.gz
New module 'posix_spawnattr_getschedpolicy'.
Diffstat (limited to 'lib/spawnattr_getschedpolicy.c')
-rw-r--r--lib/spawnattr_getschedpolicy.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/spawnattr_getschedpolicy.c b/lib/spawnattr_getschedpolicy.c
new file mode 100644
index 0000000000..49145d1376
--- /dev/null
+++ b/lib/spawnattr_getschedpolicy.c
@@ -0,0 +1,33 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#include <config.h>
+
+/* Specification. */
+#include <spawn.h>
+
+#include <string.h>
+
+/* Get scheduling policy from the attribute structure. */
+int
+posix_spawnattr_getschedpolicy (const posix_spawnattr_t *attr,
+ int *schedpolicy)
+{
+ /* Copy the scheduling policy. */
+ *schedpolicy = attr->_policy;
+
+ return 0;
+}