2010-09-08 Ralf Corsépius <ralf.corsepius@rtems.org>

* configure.ac: Add checks for pthread_attr_getguardsize,
	pthread_attr_setguardsize, pthread_attr_setstack,
	pthread_attr_getstack.
This commit is contained in:
Ralf Corsepius
2010-09-08 10:19:25 +00:00
parent 3e5014891f
commit 199296db19
2 changed files with 12 additions and 0 deletions

View File

@@ -78,6 +78,12 @@ RTEMS_CHECK_FUNC([getpgid],[#include <unistd.h>])
RTEMS_CHECK_FUNC([setpgrp],[#include <unistd.h>])
RTEMS_CHECK_FUNC([getpgrp],[#include <unistd.h>])
# pthread-functions not declared in some versions of newlib.
RTEMS_CHECK_FUNC([pthread_attr_getguardsize],[#include <pthreads.h>])
RTEMS_CHECK_FUNC([pthread_attr_setguardsize],[#include <pthreads.h>])
RTEMS_CHECK_FUNC([pthread_attr_setstack],[#include <pthreads.h>])
RTEMS_CHECK_FUNC([pthread_attr_getstack],[#include <pthreads.h>])
# Newlib's unix/ directory
AC_CHECK_FUNCS([ttyname getcwd])
# </FIXME>