summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadsetnamenp.c
blob: cb0e47ce948e52e727fcf1666d9d98bbfc2dbcd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * Copyright (c) 2017 embedded brains GmbH.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#define _GNU_SOURCE
#include <pthread.h>
#include <errno.h>

#include <rtems/score/threadimpl.h>
#include <rtems/posix/posixapi.h>

int pthread_setname_np( pthread_t thread, const char *name )
{
  Thread_Control   *the_thread;
  ISR_lock_Context  lock_context;
  Status_Control    status;

  _Objects_Allocator_lock();
  the_thread = _Thread_Get( thread, &lock_context );

  if ( the_thread == NULL ) {
    _Objects_Allocator_unlock();
    return ESRCH;
  }

  _ISR_lock_ISR_enable( &lock_context );
  status = _Thread_Set_name( the_thread, name );
  _Objects_Allocator_unlock();
  return _POSIX_Get_error( status );
}