68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
// Filename: genericThread.h
|
|
// Created by: drose (09Nov11)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef GENERICTHREAD_H
|
|
#define GENERICTHREAD_H
|
|
|
|
#include "pandabase.h"
|
|
#include "thread.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : GenericThread
|
|
// Description : A generic thread type that allows calling a C-style thread
|
|
// function without having to subclass.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA_PIPELINE GenericThread : public Thread {
|
|
public:
|
|
typedef void ThreadFunc(void *user_data);
|
|
|
|
GenericThread(const string &name, const string &sync_name);
|
|
GenericThread(const string &name, const string &sync_name, ThreadFunc *function, void *user_data);
|
|
|
|
INLINE void set_function(ThreadFunc *function);
|
|
INLINE ThreadFunc *get_function() const;
|
|
|
|
INLINE void set_user_data(void *user_data);
|
|
INLINE void *get_user_data() const;
|
|
|
|
protected:
|
|
virtual void thread_main();
|
|
|
|
private:
|
|
ThreadFunc *_function;
|
|
void *_user_data;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
Thread::init_type();
|
|
register_type(_type_handle, "GenericThread",
|
|
Thread::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "genericThread.I"
|
|
|
|
#endif
|
|
|