资源简介
The book `C Interfaces and Implementations' by David Hanson
ftp://ftp.cs.princeton.edu/pub/packages/cii/

代码片段和文件信息
#include
#include
#include
#include
#include
/*
On most platforms malloc returns pointers to blocks that are
aligned on addresses that are multiples of the size of the largest
basic data type. Some CII functions use a union to determine this
multiple (cf. union align on p. 80). Alignments are less restrictive
on some platforms and for these MAXALIGN must be defined as the
alignment required.
This program attempts to determine the correct value for MAXALIGN if
one is necessary and echo the appropriate -D option. Unfortunately
the method used relies on the C compiler using the same alignments as
malloc which is not required. malloc is the final authority: If it
returns addresses that are multiples of sizeof (union align) then
MAXALIGN is unnecessary; otherwise MAXALIGN must provide the
alignment. Incorrect values of MAXALIGN can cause crashes and
assertion failures.
*/
union align {
int i;
long l;
long *lp;
void *p;
void (*fp)(void);
float f;
double d;
long double ld;
};
typedef void (*functp);
#define yy \
xx(inti);\
xx(longl);\
xx(long *lp);\
xx(void *p);\
xx(functpfp);\
xx(floatf);\
xx(doubled);\
xx(long doubleld);
int main(int argc char *argv[]) {
#define xx(tv) struct { char pad; t v; } v
yy
#undef xx
unsigned max = 0;
#define xx(tv) if ((char *)&v.v - &v.pad > max) max = (char *)&v.v - &v.pad
yy
#undef yy
if (argc > 1 && strcmp(argv[1] “-v“) == 0)
fprintf(stderr “sizeof (union align) = %u\n“ sizeof (union align));
assert(max);
if (max != sizeof (union align))
printf(“-DMAXALIGN=%u\n“ max);
return EXIT_SUCCESS;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-11-27 00:08 《C语言接口与实现》书中源代码\
文件 1943 2016-11-26 23:59 《C语言接口与实现》书中源代码\README.txt
文件 90233 2016-11-27 00:00 《C语言接口与实现》书中源代码\cii11.tar.Z
文件 52190 2016-11-27 00:00 《C语言接口与实现》书中源代码\cii11.tar.gz
文件 77587 2016-11-27 00:01 《C语言接口与实现》书中源代码\cii11.zip
目录 0 2016-11-27 00:06 《C语言接口与实现》书中源代码\contrib\
文件 1983 2016-11-27 00:03 《C语言接口与实现》书中源代码\contrib\README.txt
文件 9496 2016-11-27 00:06 《C语言接口与实现》书中源代码\contrib\cii-lcc-win32.zip
文件 29140 2016-11-27 00:03 《C语言接口与实现》书中源代码\contrib\cii10-nt.zip
文件 1713 2016-11-27 00:04 《C语言接口与实现》书中源代码\contrib\maxalign.c
文件 2547 2016-11-27 00:05 《C语言接口与实现》书中源代码\contrib\thread.linux86
目录 0 2016-11-27 00:10 《C语言接口与实现》书中源代码\old\
文件 63501 2016-11-27 00:08 《C语言接口与实现》书中源代码\old\cii09b2.tar.Z
文件 37586 2016-11-27 00:08 《C语言接口与实现》书中源代码\old\cii09b2.tar.gz
文件 54235 2016-11-27 00:08 《C语言接口与实现》书中源代码\old\cii09b2.zip
文件 72769 2016-11-27 00:09 《C语言接口与实现》书中源代码\old\cii09b3.tar.Z
文件 43477 2016-11-27 00:09 《C语言接口与实现》书中源代码\old\cii09b3.tar.gz
文件 66704 2016-11-27 00:09 《C语言接口与实现》书中源代码\old\cii09b3.zip
文件 74579 2016-11-27 00:09 《C语言接口与实现》书中源代码\old\cii10.tar.Z
文件 44850 2016-11-27 00:09 《C语言接口与实现》书中源代码\old\cii10.tar.gz
文件 68171 2016-11-27 00:10 《C语言接口与实现》书中源代码\old\cii10.zip
- 上一篇:学生选课管理系统C语言
- 下一篇:yuv422与yuv420互转
相关资源
- 操作系统c语言模拟文件管理系统844
- C语言开发实战宝典
- C++中头文件与源文件的作用详解
- C语言代码高亮html输出工具
- 猜数字游戏 c语言代码
- C语言课程设计
- 数字电位器C语言程序
- CCS FFT c语言算法
- 使用C语言编写的病房管理系统
- 通信过程中的RS编译码程序(c语言)
- 计算机二级C语言上机填空,改错,编
- 用回溯法解决八皇后问题C语言实现
- 简易教务管理系统c语言开发文档
- 操作系统课设 读写者问题 c语言实现
- 小波变换算法 c语言版
- C流程图生成器,用C语言代码 生成C语
- 3des加密算法C语言实现
- 简单的C语言点对点聊天程序
- 单片机c语言源程序(51定时器 八个按
- 个人日常财务管理系统(C语言)
- c语言电子商务系统
- 小甲鱼C语言课件 源代码
- 将图片转换为C语言数组的程序
- C语言实现的一个内存泄漏检测程序
- DES加密算法C语言实现
- LINUX下命令行界面的C语言细胞游戏
- 用单片机控制蜂鸣器播放旋律程序(
- 学校超市选址问题(数据结构C语言版
- 电子时钟 有C语言程序,PROTEUS仿真图
- 尚观培训linux许巍老师关于c语言的课
评论
共有 条评论