even safer and more efficient alternative

This commit is contained in:
Robin Müller 2020-06-06 14:39:08 +02:00
parent 6ad36ceb24
commit be066755c0

View File

@ -5,7 +5,8 @@
PosixThread::PosixThread(const char* name_, int priority_, size_t stackSize_): PosixThread::PosixThread(const char* name_, int priority_, size_t stackSize_):
thread(0),priority(priority_),stackSize(stackSize_) { thread(0),priority(priority_),stackSize(stackSize_) {
strncpy(name, name_, PTHREAD_MAX_NAMELEN); name[0] = '\0';
strncat(name, name_, PTHREAD_MAX_NAMELE - 1);
} }
PosixThread::~PosixThread() { PosixThread::~PosixThread() {