代码搜索:Pool

找到约 5,820 项符合「Pool」的源代码

代码结果 5,820
www.eeworm.com/read/113668/6126565

cpp number_pool.cpp

/* ** ClanLib Game SDK ** Copyright (C) 2003 The ClanLib Team ** For a total list of contributers see the file CREDITS. ** ** This library is free software; you can redistribute it and/or *
www.eeworm.com/read/113668/6126715

h number_pool.h

/* ** ClanLib Game SDK ** Copyright (C) 2003 The ClanLib Team ** For a total list of contributers see the file CREDITS. ** ** This library is free software; you can redistribute it and/or *
www.eeworm.com/read/100926/6263965

h thread_pool.h

// thread_pool.h,v 1.9 2002/02/25 18:11:31 jwillemsen Exp #ifndef THREAD_POOL_H #define THREAD_POOL_H /* In order to implement a thread pool, we have to have an object that can create a thr
www.eeworm.com/read/100926/6263967

cpp thread_pool.cpp

// thread_pool.cpp,v 1.11 2002/02/25 18:11:23 jwillemsen Exp #include "thread_pool.h" /* We need this header so that we can invoke handle_input() on the objects we dequeue. */ #include "ac
www.eeworm.com/read/100285/6271302

c geqo_pool.c

/*------------------------------------------------------------------------ * * geqo_pool.c * Genetic Algorithm (GA) pool stuff * * Copyright (c) 1994, Regents of the University of California *
www.eeworm.com/read/100285/6271595

h geqo_pool.h

/*------------------------------------------------------------------------- * * geqo_pool.h * pool representation in optimizer/geqo * * Copyright (c) 1994, Regents of the University of Californ
www.eeworm.com/read/480588/6666407

h awl_pool.h

#ifndef _AWL_POOL_H #define _AWL_POOL_H #include #define POOL_MAX 65536 int pool_init(char *head[],struct sockaddr_in *to); int pool_clean(char *head[]); int pool_show(char *head[]);
www.eeworm.com/read/480588/6666417

c awl_pool.c

#include #include #include #include #include #include #include #include #include #in
www.eeworm.com/read/265179/11274350

c sql_pool.c

/* * 实现了 mysql 连接管理,先申请者先获得连接,一个连接某一时刻只能被一个线程使用。 * * 实现机制:mysql连接队列 和 申请连接队列。队列中空闲的连接会每隔一段时间刷新一 * 次,防止mysqld断开连接。 * * 申请连接:检查连接队列,有空闲连接则返回,否则加入申请连接队列末尾。 * * 释放连接:检查申请连接队列,有申请唤醒,否则连接队列中对应的连接置为空 ...
www.eeworm.com/read/265179/11274356

o sql_pool.o