HomeSort by: relevance | last modified time | path
    Searched defs:ldt_buf (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/compat/linux/arch/i386/
linux_machdep.c 495 union descriptor *ldt_buf; local
506 sz = 8192 * sizeof(*ldt_buf);
507 ldt_buf = kmem_zalloc(sz, KM_SLEEP);
511 error = x86_get_ldt1(l, &gl, ldt_buf);
515 error = copyout(ldt_buf, SCARG(uap, ptr),
516 gl.num * sizeof *ldt_buf);
518 kmem_free(ldt_buf, sz);

Completed in 16 milliseconds