Parse sgi stl function static void (* _ set_malloc_handler (void (* _ f )()))()

Source: Internet
Author: User

Parse sgi stl function static void (* _ set_malloc_handler (void (* _ f )()))()

static void (* __set_malloc_handler(void (*__f)()))(){    void (* __old)() = __malloc_alloc_oom_handler;    __malloc_alloc_oom_handler = __f;    return(__old);}

First, you must know the function expression of the function pointer as the parameter and the return function pointer (see Function
Pointer ).
Therefore, void (* set_malloc_handler () indicates that set_malloc_handler is a function pointer in the form of void (* f) () returned value.
Second, void (* _ f) () is just a function parameter.
In conclusion, void (* _ set_malloc_handler (void (* _ f) () is a function that accepts a form of void (* _ F) () function pointer as a parameter,
And return a function pointer in the form of void (* _ f. The easy-to-understand format is

typedef void(*pt2Func)();pt2Func __set_malloc_handler( void (*__f)() )  {    void (* __old)() = __malloc_alloc_oom_handler;    __malloc_alloc_oom_handler = __f;    return(__old);  }







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.