上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 38 下一页
#include stdio.h#include stdlib.h#include stdarg.h#include string.h#include signal.h#include sys/types.h#include sys/stat.h#include linux/capability.h#define GETARG(a,x) (a-x##_arg)static int debug = 0;#define __die(condition,format,...) do { \ if(condition) {\ fprintf(stderr,"[erro Read More
posted @ 2010-12-30 14:05 BloodAndBone Views(289) Comments(0) Diggs(0) Edit
enumutype{INTEGER=1,STRING=2,GNUMBERS=3};structu_tag{enumutypeutype;/*theunion'sdiscriminant*/union{intival;char*pval;structgnumbersgn;}uval;};structxdr_discrimu_tag_arms[4]={{INTEGER,xdr_int},{GNUMBERS,xdr_gnumbers}{STRING,xdr_wrap_string},{__dontcare__,NULL}/*alwaysterminatearmswithaNULLxdr_proc*/ Read More
posted @ 2010-12-30 13:58 BloodAndBone Views(291) Comments(0) Diggs(0) Edit
挂接命令(mount)命令格式:mount [-t vfstype] [-ooptions] device dir其中:1.-tvfstype指定文件系统的类型,通常不必指定。mount会自动选择正确的类型。常用类型有:  光盘或光盘镜像:iso9660  DOSfat16文件系统:msdos  Windows 9xfat32文件系统:vfat  Windows NTntfs文件系统:ntfs  MountWindows文件网络共享:smbfs  UNIX(LINUX)文件网络共享:nfs2.-o options主要用来描述设备或档案的挂接方式。常用的参数有:  loop:用来把一个文件当成硬 Read More
posted @ 2010-12-30 09:26 BloodAndBone Views(721) Comments(0) Diggs(0) Edit
Eucalyptus中数据库Eucalyptus中数据库为hsqldbHsqldb简介HSQLDB是一个轻量级的纯Java开发的开放源代码的关系数据库系统,其体积小,占用空间小,使用简单,支持内存运行方式等特点。 Eucalyptus中数据库Eucalyptus中数据库为hsqldbHsqldb简介HSQLDB是一个轻量级的纯Java开发的开放源代码的关系数据库系统,其体积小,占用空间小,使用简单,支持内存运行方式等特点。 Hsqldb三种运行模式: HSqlDB不适合管理大型数据,例如百万数量级记录的数据库应用。HSQLDB简介它具有Server模式,进程内模式(In-Process)和内存 Read More
posted @ 2010-12-29 12:58 BloodAndBone Views(535) Comments(0) Diggs(0) Edit
JNI介绍Java 本机接口(Java Native Interface (JNI))是一个本机编程接口,它是 Java 软件开发工具箱(Java SoftwareDevelopment Kit (SDK))的一部分。JNI允许 Java 代码使用以其它语言(譬如 C 和 C++)编写的代码和代码库。Invocation API(JNI 的一部分)可以用来将 Java 虚拟机(JVM)嵌入到本机应用程序中,从而允许程序员从本机代码内部调用 Java 代码。环境需求JNI 最常见的两个应用:从 Java 程序调用 C/C++,以及从 C/C++ 程序调用 Java 代码需要下列工具与组件:Jav Read More
posted @ 2010-12-22 15:00 BloodAndBone Views(6456) Comments(1) Diggs(3) Edit
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 38 下一页