2008-10-16 03:02:24 Export meaning
vijai ragavan (INDIA)
Message: 63753
What is the purpose of API calling functions in uClinux kernal?
EXPORT_SYMBOL("call back function")
MODULE_AUTHOR("NAME");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Linux driver");
QuoteReplyEditDelete
2008-10-16 16:14:17 Re: Export meaning
Robin Getz (UNITED STATES)
Message: 63809
Vijai:
https://docs.blackfin.uclinux.org/doku.php?id=references_and_pointers#good_books
Check out Linux Device Drivers - Third Edition
-Robin
QuoteReplyEditDelete
2008-10-17 00:38:16 Re: Export meaning
Mike Frysinger (UNITED STATES)
Message: 63829
those arent functions, they're macros. grep the headers if you want to know what they do exactly. or just read the books (some of which are available for free) that Robin posted.