OVMS3-idf/components/pthread
Kedar Sovani 7a0cab0a5b pthread: Allow configuration of priority and stacksize
The expected usage is:
  esp_pthread_set_cfg(cfg);
  pthread_create()

If the inherit flag is set, then all subsequent threads forked by this
thread will also inherit this configuration. This avoids having to
change/prefix this for each and every pthread_create() call.
2018-03-20 18:06:32 +05:30
..
include pthread: Allow configuration of priority and stacksize 2018-03-20 18:06:32 +05:30
test pthread: Added support for pthread condition variables 2017-11-23 11:26:51 +08:00
component.mk pthread: Allow configuration of priority and stacksize 2018-03-20 18:06:32 +05:30
Kconfig pthread: Fixes memory leaks and stack overflow in tests 2017-11-17 16:57:33 +03:00
pthread.c pthread: Allow configuration of priority and stacksize 2018-03-20 18:06:32 +05:30
pthread_cond_var.c Removed logging from pthread conditional variable which completely drowned out any other logging and also had negative effects on the RMT due to sharing the same log system. Related to #1345 / TW#16842 2017-12-28 15:21:00 +01:00
pthread_internal.h pthread: Add support for pthread thread local storage 2017-10-17 14:46:08 +08:00
pthread_local_storage.c pthread: Use spinlock not semaphore mutex to protect TLS key list 2017-12-01 14:28:07 +11:00