Home
last modified time | relevance | path

Searched refs:pthread_attr_setstack (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/tests/posix/xsi_threads_ext/src/
Dmain.c123 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/
DKconfig.xsi_threads_ext8 This option provides support for pthread_attr_getstack(), pthread_attr_setstack(),
DKconfig.profile10 select POSIX_AEP_REALTIME_MINIMAL # CLOCK_MONOTONIC, pthread_attr_setstack(), etc
DKconfig.pthread72 pthread_attr_getstack() and pthread_attr_setstack().
Dpthread.c344 int pthread_attr_setstack(pthread_attr_t *_attr, void *stackaddr, size_t stacksize) in pthread_attr_setstack() function
/Zephyr-latest/tests/posix/headers/src/
Dpthread_h.c79 zassert_not_null(pthread_attr_setstack); in ZTEST()
/Zephyr-latest/tests/modules/thrift/ThriftTest/src/
Dmain.cpp130 rv = pthread_attr_setstack(attrp, ThriftTest_server_stack, in thrift_test_before()
/Zephyr-latest/arch/posix/include/
Dposix_cheats.h145 #define pthread_attr_setstack(...) zap_pthread_attr_setstack(__VA_ARGS__) macro
/Zephyr-latest/tests/benchmarks/posix/threads/src/
Dmain.c215 ret = pthread_attr_setstack(&pthread_attrs[i], thread_stacks[i], in setup()
/Zephyr-latest/tests/posix/common/src/
Dpthread_attr.c142 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/
Dmain.c126 res = pthread_attr_setstack(&attr, &stack[i], STACK_SIZE); in setup()
/Zephyr-latest/include/zephyr/posix/
Dpthread.h422 int pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr,
/Zephyr-latest/doc/services/portability/posix/option_groups/
Dindex.rst694 pthread_attr_setstack(),yes