summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/threadsup.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-14 17:23:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-06-22 14:00:28 +0200
commit6bab009a61ae9ca7f7ac76140f8f13fbaab784c6 (patch)
tree7f10aaf87cf912151429fb1cfbde65071e804d87 /cpukit/posix/include/rtems/posix/threadsup.h
parentposix: Delete POSIX_API_Control::schedpolicy (diff)
downloadrtems-6bab009a61ae9ca7f7ac76140f8f13fbaab784c6.tar.bz2
posix: Delete POSIX_API_Control::schedparam
This field was redundant.
Diffstat (limited to 'cpukit/posix/include/rtems/posix/threadsup.h')
-rw-r--r--cpukit/posix/include/rtems/posix/threadsup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h
index a9f36ef1ad..e18a42995a 100644
--- a/cpukit/posix/include/rtems/posix/threadsup.h
+++ b/cpukit/posix/include/rtems/posix/threadsup.h
@@ -45,10 +45,10 @@ extern "C" {
typedef struct {
/** Back pointer to thread of this POSIX API control. */
Thread_Control *thread;
+
/** This is the POSIX threads attribute set. */
pthread_attr_t Attributes;
- /** This is the thread's current set of scheduling parameters. */
- struct sched_param schedparam;
+
/**
* This is the timer which controls when the thread executes at
* high and low priority when using the sporadic scheduler.