blob: 3946f62785367a9b4b01ff7378c117854e693bfe [file] [log] [blame]
/*
* Copyright (c) 2004, Intel Corporation. All rights reserved.
* Created by: crystal.xiong REMOVE-THIS AT intel DOT com
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
* Test pthread_attr_getstacksize()
*
* Steps:
* 1. Initialize pthread_attr_t object (attr)
* 2. set the stacksize to attr
* 3. get the stacksize
*/
#include <pthread.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/param.h>
#include <errno.h>
#include <unistd.h>
#include "posixtest.h"
#define TEST "1-1"
#define FUNCTION "pthread_attr_getstacksize"
#define ERROR_PREFIX "unexpected error: " FUNCTION " " TEST ": "
int main()
{
pthread_attr_t attr;
size_t stack_size;
size_t ssize;
void *saddr;
int rc;
/* Initialize attr */
rc = pthread_attr_init(&attr);
if (rc != 0) {
perror(ERROR_PREFIX "pthread_attr_init");
exit(PTS_UNRESOLVED);
}
/* Get the default stack_addr and stack_size value */
rc = pthread_attr_getstacksize(&attr, &stack_size);
if (rc != 0) {
perror(ERROR_PREFIX "pthread_attr_getstacksize");
exit(PTS_UNRESOLVED);
}
/* printf("stack_size = %lu\n", stack_size); */
stack_size = PTHREAD_STACK_MIN;
if (posix_memalign (&saddr, sysconf(_SC_PAGE_SIZE),
stack_size) != 0)
{
perror (ERROR_PREFIX "out of memory while "
"allocating the stack memory");
exit(PTS_UNRESOLVED);
}
/* printf("stack_size = %lu\n", stack_size); */
rc = pthread_attr_setstacksize(&attr, stack_size);
if (rc != 0) {
perror(ERROR_PREFIX "pthread_attr_setstacksize");
exit(PTS_UNRESOLVED);
}
rc = pthread_attr_getstacksize(&attr, &ssize);
if (rc != 0) {
perror(ERROR_PREFIX "pthread_attr_getstacksize");
exit(PTS_UNRESOLVED);
}
/* printf("ssize = %lu\n", ssize); */
rc = pthread_attr_destroy(&attr);
if (rc != 0)
{
perror(ERROR_PREFIX "pthread_attr_destroy");
exit(PTS_UNRESOLVED);
}
printf("Test PASSED\n");
return PTS_PASS;
}