Add pthread functions
[c11tester.git] / threads-model.h
index f2efd6c0a75f962600b820222b2cb62ffb974ff4..e159697d9d54ce10c3cfb1fe204352a9e0bd7435 100644 (file)
@@ -101,6 +101,8 @@ public:
 
        bool is_model_thread() const { return model_thread; }
 
+       void * get_stack_addr() { return stack; }
+
        friend void thread_startup();
 #ifdef TLS
        friend void setup_context();
@@ -156,6 +158,7 @@ private:
        void *arg;
        ucontext_t context;
        void *stack;
+       uint32_t stack_size;
 #ifdef TLS
        void * helper_stack;
 public:
@@ -191,7 +194,7 @@ void tlsdestructor(void *v);
 
 Thread * thread_current();
 void thread_startup();
-void main_thread_startup();
+void initMainThread();
 
 static inline thread_id_t thrd_to_id(thrd_t t)
 {