- 博客(13)
- 资源 (2)
- 收藏
- 关注
原创 bash实现互斥、信号量的方法
【通过fifo实现信号量】利用fifo的block-reading实现。#!/bin/bashconf_max_currency=10conf_sem_file=/tmp/$.fifoconf_fifo_fd=123 # 123 for example, or any expect 0,1,2# initmkinfo ${conf_sem_file}exec ${conf_fifo_fd}${conf_sem_file} rm ${conf_sem_file}for (( i
2010-12-03 13:28:00 1440
原创 乐观并发控制
<br />Amazon 拍卖过程 竞价<br />http://hi.baidu.com/loky2008/blog/item/91f3ec2f73e5c25b4ec22669.html/cmtid/d7edf8c646d670d1d0006079<br />http://doc.javanb.com/hibernate-reference-3-2-0-zh/ch11s03.html<br />
2010-10-16 00:13:00 522
原创 libssh c++
ssh.h/* ssh_t Using libssh*/#ifndef __LIBSSH_CLASS_TYPE_H__#define __LIBSSH_CLASS_TYPE_H_#include #include #include #include #include #include #include #include #include #include #include #include #include #include #
2010-09-05 22:55:00 3725 7
原创 libssh2 C++封装
研究了一下libssh与libssh2,网上的例子除了官方的example,寥寥无几,share一下自己拙劣的C++封装。ssh2.h/* Objective C++ using libssh2 (http://www.libssh2.org/). LIBRARY NEEDED ssl crypto ssh2 ABOUT LIBSSH2 http://www.libssh2.org/docs.html http://www.libssh2
2010-09-05 22:38:00 12120 13
原创 模仿python SocketServer.py写的一个socket服务类 2
<br />增加threading处理<br />threading_xx类<br />class threading_stream_server_t : public stream_server_t{private: struct thread_parameter_t { threading_stream_server_t* handler; socket_t* socket; addr
2010-07-25 19:55:00 788
原创 模仿python SocketServer.py写的一个socket服务类
socket_t类见上文。SocketServer.py的抽象校学习了一下这个c++版本目前实现了stream的fork,DGRAM/thread尚未实现socket_server.h/** **/#ifndef __SOCKET_SERVER_H__#define __SOCKET_SERVER_H__#include "socket++.h"#include #include #include #include #include namespace ss{
2010-07-25 09:58:00 880
原创 Linux socket类,支持AF_INET/AF_UNIX STREAM/DGRAM
<br />学习python时发现,socket和SocketServer的方便快捷,于是研究了一下socket和SocketServer.py写了一下C++版本的。<br />陆续分享一下。<br /> <br />1. socket类socket_t<br />socket++.h<br />/* class socket_t * Description * Simulation to python socket class * Author * wfb *
2010-07-25 09:45:00 2880
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人