util.crand: Use a small buffer on the stack for small pieces of random, should be faster

This commit is contained in:
Kim Alvefur 2017-12-03 15:03:25 +01:00
parent af554a9feb
commit da570eb0a4

View file

@ -58,9 +58,19 @@ int getrandom(void *buf, size_t buflen, unsigned int flags) {
#error util.crand compiled without a random source
#endif
#ifndef SMALLBUFSIZ
#define SMALLBUFSIZ 32
#endif
int Lrandom(lua_State *L) {
char smallbuf[SMALLBUFSIZ];
char *buf = &smallbuf[0];
const size_t len = luaL_checkinteger(L, 1);
void *buf = lua_newuserdata(L, len);
if(len > SMALLBUFSIZ) {
buf = lua_newuserdata(L, len);
}
#if defined(WITH_GETRANDOM)
/*