view test/callback_suite/make-config.lua @ 202:030fbb70aa1b

- changed allocwx code: * to introduce a call allowing to switch the written page to be executable (e.g. using mprotect) * changed mmap based code so page is always W^X
author Tassilo Philipp
date Mon, 20 Mar 2017 23:12:58 +0100
parents 3e629dc19168
children 45ac093ca822
line wrap: on
line source

require "config"

local defs = {
  MAXARGS = maxargs,
  NSIGS   = nsigs,
  API     = api
}

for k,v in pairs(defs) do
  io.write("#define CONFIG_" .. k .. " " .. v .. "\n" )
end
io.flush()