Deleted Added
sdiff udiff text old ( 111010 ) new ( 124296 )
full compact
1/*
2 * Copyright (c) 1993 John Brezak
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
24 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/lib/libc/i386/sys/i386_get_ldt.c 111010 2003-02-16 17:29:11Z nectar $");
31
32#include <sys/cdefs.h>
33#include <machine/segments.h>
34#include <machine/sysarch.h>
35
36extern int sysarch(int op, char *parms);
37
38int
39i386_get_ldt(int start, union descriptor *descs, int num)
40{
41 struct i386_ldt_args p;
42
43 p.start = start;
44 p.descs = descs;
45 p.num = num;
46
47 return sysarch(I386_GET_LDT, (char *)&p);
48}