Searched refs:pthread_attr_setstack (Results 1 – 13 of 13) sorted by relevance
/Zephyr-latest/tests/posix/xsi_threads_ext/src/ |
D | main.c | 123 zassert_equal(pthread_attr_setstack(NULL, NULL, 0), EACCES); in ZTEST() 124 zassert_equal(pthread_attr_setstack(NULL, NULL, stacksize), EINVAL); in ZTEST() 125 zassert_equal(pthread_attr_setstack(NULL, stackaddr, 0), EINVAL); in ZTEST() 126 zassert_equal(pthread_attr_setstack(NULL, stackaddr, stacksize), EINVAL); in ZTEST() 127 zassert_equal(pthread_attr_setstack((pthread_attr_t *)&uninit_attr, in ZTEST() 131 zassert_equal(pthread_attr_setstack(&attr, NULL, 0), EACCES); in ZTEST() 132 zassert_equal(pthread_attr_setstack(&attr, NULL, stacksize), EACCES); in ZTEST() 133 zassert_equal(pthread_attr_setstack(&attr, stackaddr, 0), EINVAL); in ZTEST() 140 zassert_ok(pthread_attr_setstack(&attr, stackaddr, stacksize)); in ZTEST() 150 zassert_ok(pthread_attr_setstack(&attr, stackaddr, stacksize - 1)); in ZTEST() [all …]
|
/Zephyr-latest/lib/posix/options/ |
D | Kconfig.xsi_threads_ext | 8 This option provides support for pthread_attr_getstack(), pthread_attr_setstack(),
|
D | Kconfig.profile | 10 select POSIX_AEP_REALTIME_MINIMAL # CLOCK_MONOTONIC, pthread_attr_setstack(), etc
|
D | Kconfig.pthread | 72 pthread_attr_getstack() and pthread_attr_setstack().
|
D | pthread.c | 344 int pthread_attr_setstack(pthread_attr_t *_attr, void *stackaddr, size_t stacksize) in pthread_attr_setstack() function
|
/Zephyr-latest/tests/posix/headers/src/ |
D | pthread_h.c | 79 zassert_not_null(pthread_attr_setstack); in ZTEST()
|
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/ |
D | main.cpp | 130 rv = pthread_attr_setstack(attrp, ThriftTest_server_stack, in thrift_test_before()
|
/Zephyr-latest/arch/posix/include/ |
D | posix_cheats.h | 145 #define pthread_attr_setstack(...) zap_pthread_attr_setstack(__VA_ARGS__) macro
|
/Zephyr-latest/tests/benchmarks/posix/threads/src/ |
D | main.c | 215 ret = pthread_attr_setstack(&pthread_attrs[i], thread_stacks[i], in setup()
|
/Zephyr-latest/tests/posix/common/src/ |
D | pthread_attr.c | 142 zassert_ok(pthread_attr_setstack(&attr, &static_thread_stack, STATIC_THREAD_STACK_SIZE)); in ZTEST() 582 zassert_ok(pthread_attr_setstack(&attr, &static_thread_stack, STATIC_THREAD_STACK_SIZE)); in before()
|
/Zephyr-latest/samples/net/sockets/socketpair/src/ |
D | main.c | 126 res = pthread_attr_setstack(&attr, &stack[i], STACK_SIZE); in setup()
|
/Zephyr-latest/include/zephyr/posix/ |
D | pthread.h | 422 int pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr,
|
/Zephyr-latest/doc/services/portability/posix/option_groups/ |
D | index.rst | 694 pthread_attr_setstack(),yes
|