Example #1
0
__attribute__ ((constructor(98))) void
__VLTunprotect (void)
{
  __VLTChangePermission (__VLTP_READ_WRITE);
}
Example #2
0
void
__VLTUnprotectPreinit (void)
{
  __VLTChangePermission (__VLTP_READ_WRITE);
}
Example #3
0
void
__VLTProtectPreinit (void)
{
  __VLTChangePermission (__VLTP_READ_ONLY);
}
Example #4
0
__attribute__ ((constructor(100))) void
__VLTprotect (void)
{
  __VLTChangePermission (__VLTP_READ_ONLY);
}