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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * kdatasize.c -- print the size of common data items from kernel space
  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. #ifndef __KERNEL__
  17. #  define __KERNEL__
  18. #endif
  19. #ifndef MODULE
  20. #  define MODULE
  21. #endif
  22. #include <linux/config.h>
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/types.h>
  26. #include <linux/utsname.h>
  27. #include <linux/errno.h>
  28. void cleanup_module(void)
  29. { /* never used */ }
  30. int init_module(void)
  31. {
  32.     /* print information and return an error */
  33.     printk("arch   Size:  char  short  int  long   ptr long-long "
  34.    " u8 u16 u32 u64n");
  35.     printk(       "%-12s  %3i   %3i   %3i   %3i   %3i   %3i      "
  36.    "%3i %3i %3i %3in",
  37.    system_utsname.machine,
  38.    (int)sizeof(char), (int)sizeof(short), (int)sizeof(int),
  39.    (int)sizeof(long),
  40.    (int)sizeof(void *), (int)sizeof(long long), (int)sizeof(__u8),
  41.    (int)sizeof(__u16), (int)sizeof(__u32), (int)sizeof(__u64));
  42.     return -ENODEV;
  43. }