- 博客(14)
- 资源 (8)
- 收藏
- 关注
原创 rust 多线程处理方式数据
在多线程传递数据时,只能通过channel,在多线程数据共享时,Arc+Mutex(如果多线程共享的只是int bool这类简单数据类型,你还可以使用原子操作)
2020-09-03 11:15:25 905
原创 位基本
0 1 0 0 0 1 1 1 1 0 0 0 0 1 1 1 0 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 |...............|...............|...............|...............| +-bit 31.......|...............|...............|.......bit 0--+
2011-12-09 09:29:42 432
原创 LINUX 源码中特殊关键字
以下取自2.16以上版本 属性(attributes)也可以用来设置变量和结构体的成员。如,为了保证结构体中的一个成员变量与结构体有特殊方式的对齐(alignment)struct mong {char id;int code __attribute__ ((align(4)));}; 设置多个属性,各个属性用逗号分开即可。如下面的定义就是告诉编译器,它不改变全局
2011-12-05 10:01:03 457
转载 FTP ACE
1、ffcs_ftp_client.hview plain#ifndef FTP_CLIENT_ACE_H #define FTP_CLIENT_ACE_H #include #include #include #include #include #include
2011-11-24 00:07:43 1803
转载 ACE 配置加测试
// serverMain.cpp//配完后测试ACE是否可用// 如果是WIN32平台上报错// f:\ace\ace_wrappers\ace\config-win32-common.h(23): // fatal error C1189: #error : Please define WIN32 in your project settings.// 可以文件头添加WIN32的预
2011-11-23 23:37:17 1620
原创 FTPPROXY 改进
int ftp_parse_response(ftp_request_rec* r, ftp_buff_rec* response) { int ret = _ERROR; ulong resp_code; char *s, *p; s = p = response->buff; for (;;) { if((p = strchr(s, ' ')) ||
2011-11-11 17:12:36 561
原创 nat
#include "stdafx.h"//#include "Proxy.h"#include //WINSOCKET API 2。0#include #include #include #include using namespace std;#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char T
2011-11-09 01:22:49 504
原创 window.h
#include "stdafx.h"#include "natGtpu.h"#include #include #include #include #include #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __
2011-11-08 19:30:28 801
转载 VC/MFC 不同进程间的消息通信与数据(字符串)发送
本文转自于 http://book.csdn.net/bookfiles/212/10021210209.shtml出处:Windows应用程序捆绑核心编程3.4 使用WM_COPYDATA消息通信 对于少量数据可以用WM_COPYDATA方便地实现通信。由于SendMessage()是阻塞的,只有接收方响应了消息,SendMessage()才能返回,否则一直阻塞。
2011-11-07 01:11:54 1016
转载 VC6实现简单代理服务
#include "stdafx.h"#include "Proxy.h"#include //WINSOCKET API 2。0#include #include #include #ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif///
2011-11-06 22:59:46 459
原创 类
A::f1 B::f1 C::f1 D::f1 E::f1 A::f2 A::f2 B::f2 A::f2 A::f2 D::f2 A::f3 B::f3 C::f3 B::f3 size of A: 4si
2011-10-17 17:22:03 304
设计模式迷你手册.chm
2011-11-04
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人