blob: 1b4f3489c064ac9b58acd65847b846f6a10b7556 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/*
* attr.c
*
* Description:
* This translation unit implements operations on thread attribute objects.
*/
#include "pthread.h"
#include "implement.h"
int
pthread_attr_setstacksize(pthread_attr_t *attr,
size_t stacksize)
{
/* Verify that the stack size is within range. */
if (stacksize < PTHREAD_STACK_MIN)
{
return EINVAL;
}
if (attr == NULL)
{
return EINVAL;
}
/* Everything is okay. */
attr->stacksize = stacksize;
return 0;
}
int
pthread_attr_getstacksize(const pthread_attr_t *attr,
size_t *stacksize)
{
if (attr == NULL)
{
return EINVAL;
}
/* Everything is okay. */
*stacksize = attr->stacksize;
return 0;
}
int
pthread_attr_setstackaddr(pthread_attr_t *attr,
void *stackaddr)
{
if (attr == NULL)
{
return EINVAL;
}
/* FIXME: it does not look like Win32 permits this. */
return ENOSYS;
}
int
pthread_attr_getstackaddr(const pthread_attr_t *attr,
void **stackaddr)
{
if (attr == NULL)
{
return EINVAL;
}
/* FIXME: it does not look like Win32 permits this. */
return ENOSYS;
}
int
pthread_attr_init(pthread_attr_t *attr)
{
if (attr == NULL)
{
/* This is disallowed. */
return EINVAL;
}
/* FIXME: Fill out the structure with default values. */
attr->stacksize = 0;
return 0;
}
int
pthread_attr_destroy(pthread_attr_t *attr)
{
if (attr == NULL)
{
return EINVAL;
}
/* Nothing to do. */
return 0;
}
|