Linux Kernel Programming: Defensive programming Learning for source analysis

Source: Internet
Author: User

 /* *kernel  : linux2.6.32.63  *file    : \scripts \mod\modpost.h             \scripts\mod\ modpost.c   *author  : davidlin        * date    : 2014-12-25pm        *email    : [email protected] or [email protected]         *world   : the city of SZ, in China         *Ver     : 000.000.001         *history :     editor       time            do         *          1) linpeng        2014-12-25      created this file!         *          2)          */ /* modpost.h */#define  nofail (PTR)     do_nofail ( PTR),  #ptr)  void* do_nofail  (void* ptr, const char* expr);/* end  of modpost.h *//* modpost.c */void* do_nofail (void* ptr, const  char* expr) {    if (!ptr)         fatal (" Modpost: memory allocation failure:%s.\n ",  expr);     return ptr;} Static struct module* new_module (char* modname) {    struct module * mod;    char *p, *s;        mod = nofail ( malloc (sizeof (*MOD)));     memset (Mod, 0, sizeof (*mod));     p  = nofail (StrDup (modname));    /* strip trailing .o */     S = STRRCHR (p,  '. ');     if (s != null)         if (strcmp (s),   ". O")  == 0)             *s =   '     /* add to list */    mod->name ';  = p;    mod->gpl_compatible = -1;    mod-> next = modules;    modules = mod;    return  MoD;}

Linux Kernel Programming: Defensive programming Learning for source analysis

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.