datasize.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * datasize.c -- print the size of common data items
  3.  * This runs with any Linux kernel (not any Unix, because of <linux/types.h>)
  4.  *
  5.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  6.  * Copyright (C) 2001 O'Reilly & Associates
  7.  *
  8.  * The source code in this file can be freely used, adapted,
  9.  * and redistributed in source or binary form, so long as an
  10.  * acknowledgment appears in derived source files.  The citation
  11.  * should list that the code comes from the book "Linux Device
  12.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  13.  * by O'Reilly & Associates.   No warranty is attached;
  14.  * we cannot take responsibility for errors or fitness for use.
  15.  */
  16. #include <stdio.h>
  17. #include <sys/utsname.h>
  18. #include <linux/types.h>
  19. int main(int argc, char **argv)
  20. {
  21.     struct utsname name;
  22.     uname(&name); /* never fails :) */
  23.     printf("arch   Size:  char  short  int  long   ptr long-long "
  24.    " u8 u16 u32 u64n");
  25.     printf(       "%-12s  %3i   %3i   %3i   %3i   %3i   %3i      "
  26.    "%3i %3i %3i %3in",
  27.    name.machine,
  28.    (int)sizeof(char), (int)sizeof(short), (int)sizeof(int),
  29.    (int)sizeof(long),
  30.    (int)sizeof(void *), (int)sizeof(long long), (int)sizeof(__u8),
  31.    (int)sizeof(__u16), (int)sizeof(__u32), (int)sizeof(__u64));
  32.     return 0;
  33. }