hi all
alloc_text( "textsection", function1, ... )
Does the name of textsection is fix or not ?? How to name it??
In the DDK's serial sample code say
// INIT - only needed during init and then can be disposed
// PAGESRP0 - always paged / never locked
// PAGESER - must be locked when a device is open, else paged
// INIT is used for DriverEntry() specific code
// PAGESRP0 is used for code that is not often called and has nothing
// to do with I/O performance. An example,
IRP_MJ_PNP/IRP_MN_START_DEVICE
// support functions
// PAGESER is used for code that needs to be locked after an open for
both
// performance and IRQL reasons.
why PAGESRP0 will page out ,but PASESER did't ?? Does PAGESER0 is the
same named as "PAGE"??
Sorry for ask a studip question^^"""