From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97137 invoked by alias); 30 Nov 2017 08:50:19 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 96582 invoked by uid 10080); 30 Nov 2017 08:49:16 -0000 Date: Thu, 30 Nov 2017 08:50:00 -0000 Message-ID: <20171130084916.96580.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Sebastian Huber To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] RTEMS: Add set/get name functions X-Act-Checkin: newlib-cygwin X-Git-Author: Sebastian Huber X-Git-Refname: refs/heads/master X-Git-Oldrev: 552a20ab4e2736d7cbd0293f8a69d7fbf8761fa8 X-Git-Newrev: 186166f67abcfe51f9224c868845a2742c44bbbf X-SW-Source: 2017-q4/txt/msg00035.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=186166f67abcfe51f9224c868845a2742c44bbbf commit 186166f67abcfe51f9224c868845a2742c44bbbf Author: Sebastian Huber Date: Tue Nov 28 07:57:51 2017 +0100 RTEMS: Add set/get name functions Add inline functions to set/get the name. Signed-off-by: Sebastian Huber 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);