You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/thread.h

58 lines
1.3 KiB

/*
thread.h
Header for a Java style thread class in C++.
------------------------------------------
Copyright © 2013 [Vic Hargrave - http://vichargrave.com]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef __thread_h__
#define __thread_h__
#include <pthread.h>
#include "jemalloc.h"
#ifndef NOJEM
#if defined(__APPLE__) && defined(__MACH__)
#ifndef mallctl
#define mallctl(a, b, c, d, e) je_mallctl(a, b, c, d, e)
#endif
#endif // __APPLE__ and __MACH__
#endif // NOJEM
class Thread
{
public:
Thread();
virtual ~Thread();
int start(unsigned int ss=64, bool jemalloc_tcache=true);
int join();
// commenting the following code because we don't use it
// int detach();
// pthread_t self();
virtual void* run() = 0;
private:
pthread_t m_tid;
int m_running;
int m_detached;
};
#endif