summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_setstackaddr.c
blob: 4b320cd9d83c0809f83a0a83b120d7a7426acfb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <unistd.h>
#include <errno.h>

#include <pthread.h>
#include "thread_internal.h"

int pthread_attr_setstackaddr(pthread_attr_t *attr, void *stack)
{
  __THREAD_INIT();

  attr->__stackaddr=stack;
  return 0;
}