public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] RTEMS: Add set/get name <sys/lock.h> functions
@ 2017-11-30  8:50 Sebastian Huber
  0 siblings, 0 replies; only message in thread
From: Sebastian Huber @ 2017-11-30  8:50 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=186166f67abcfe51f9224c868845a2742c44bbbf

commit 186166f67abcfe51f9224c868845a2742c44bbbf
Author: Sebastian Huber <sebastian.huber@embedded-brains.de>
Date:   Tue Nov 28 07:57:51 2017 +0100

    RTEMS: Add set/get name <sys/lock.h> functions
    
    Add inline functions to set/get the name.
    
    Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>

Diff:
---
 newlib/libc/sys/rtems/include/sys/lock.h | 72 +++++++++++++++++++++++++++++++-
 1 file changed, 71 insertions(+), 1 deletion(-)

diff --git a/newlib/libc/sys/rtems/include/sys/lock.h b/newlib/libc/sys/rtems/include/sys/lock.h
index ec3415a..f2666ed 100644
--- a/newlib/libc/sys/rtems/include/sys/lock.h
+++ b/newlib/libc/sys/rtems/include/sys/lock.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2016 embedded brains GmbH.  All rights reserved.
+ * Copyright (c) 2015, 2017 embedded brains GmbH.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -119,6 +119,20 @@ _Mutex_Initialize_named(struct _Mutex_Control *_mutex, const char *_name)
 	*_mutex = _init;
 }
 
+static __inline void
+_Mutex_Set_name(struct _Mutex_Control *_mutex, const char *_name)
+{
+
+	_mutex->_Queue._name = _name;
+}
+
+static __inline const char *
+_Mutex_Get_name(const struct _Mutex_Control *_mutex)
+{
+
+	return (_mutex->_Queue._name);
+}
+
 void _Mutex_Acquire(struct _Mutex_Control *);
 
 int _Mutex_Acquire_timed(struct _Mutex_Control *, const struct timespec *);
@@ -152,6 +166,20 @@ _Mutex_recursive_Initialize_named(struct _Mutex_recursive_Control *_mutex,
 	*_mutex = _init;
 }
 
+static __inline void
+_Mutex_recursive_Set_name(struct _Mutex_recursive_Control *_mutex, const char *_name)
+{
+
+	_mutex->_Mutex._Queue._name = _name;
+}
+
+static __inline const char *
+_Mutex_recursive_Get_name(const struct _Mutex_recursive_Control *_mutex)
+{
+
+	return (_mutex->_Mutex._Queue._name);
+}
+
 void _Mutex_recursive_Acquire(struct _Mutex_recursive_Control *);
 
 int _Mutex_recursive_Acquire_timed(struct _Mutex_recursive_Control *,
@@ -185,6 +213,20 @@ _Condition_Initialize_named(struct _Condition_Control *_cond,
 	*_cond = _init;
 }
 
+static __inline void
+_Condition_Set_name(struct _Condition_Control *_condition, const char *_name)
+{
+
+	_condition->_Queue._name = _name;
+}
+
+static __inline const char *
+_Condition_Get_name(const struct _Condition_Control *_condition)
+{
+
+	return (_condition->_Queue._name);
+}
+
 void _Condition_Wait(struct _Condition_Control *, struct _Mutex_Control *);
 
 int _Condition_Wait_timed(struct _Condition_Control *,
@@ -226,6 +268,20 @@ _Semaphore_Initialize_named(struct _Semaphore_Control *_semaphore,
 	*_semaphore = _init;
 }
 
+static __inline void
+_Semaphore_Set_name(struct _Semaphore_Control *_semaphore, const char *_name)
+{
+
+	_semaphore->_Queue._name = _name;
+}
+
+static __inline const char *
+_Semaphore_Get_name(const struct _Semaphore_Control *_semaphore)
+{
+
+	return (_semaphore->_Queue._name);
+}
+
 void _Semaphore_Wait(struct _Semaphore_Control *);
 
 void _Semaphore_Post(struct _Semaphore_Control *);
@@ -253,6 +309,20 @@ _Futex_Initialize_named(struct _Futex_Control *_futex, const char *_name)
 	*_futex = _init;
 }
 
+static __inline void
+_Futex_Set_name(struct _Futex_Control *_futex, const char *_name)
+{
+
+	_futex->_Queue._name = _name;
+}
+
+static __inline const char *
+_Futex_Get_name(const struct _Futex_Control *_futex)
+{
+
+	return (_futex->_Queue._name);
+}
+
 int _Futex_Wait(struct _Futex_Control *, int *, int);
 
 int _Futex_Wake(struct _Futex_Control *, int);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-11-30  8:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-30  8:50 [newlib-cygwin] RTEMS: Add set/get name <sys/lock.h> functions Sebastian Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).