~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/src/thread_xt.h

  • Committer: Brian Aker
  • Date: 2010-08-09 18:04:12 UTC
  • mfrom: (1689.3.7 staging)
  • Revision ID: brian@gaz-20100809180412-olurwh51ojllev6p
Merge in heap conversion, and case insensitive patch, and remove need for
M_HASH in session.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2005 PrimeBase Technologies GmbH
 
1
/* Copyright (c) 2005 PrimeBase Technologies GmbH
2
2
 *
3
3
 * PrimeBase XT
4
4
 *
14
14
 *
15
15
 * You should have received a copy of the GNU General Public License
16
16
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
18
 *
19
19
 * 2005-01-03   Paul McCullagh
20
20
 *
241
241
class XTTask;
242
242
 
243
243
/* Run a task. The thread input is the thread that is running the task. */
244
 
typedef xtBool (*XTDoTaskFunc)(XTTask *task_data, XTThread *thread);
245
 
typedef void (*XTFreeTaskFunc)(XTTask *task_data);
 
244
typedef xtBool (*XTDoTaskFunc)(struct XTTask *task_data, struct XTThread *thread);
 
245
typedef void (*XTFreeTaskFunc)(struct XTTask *task_data);
246
246
 
247
247
class XTTask {
248
248
        public: