Deleted Added
full compact
i386_get_ldt.c (111010) i386_get_ldt.c (124296)
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>
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 $");
30__FBSDID("$FreeBSD: head/lib/libc/i386/sys/i386_get_ldt.c 124296 2004-01-09 16:52:09Z nectar $");
31
32#include <sys/cdefs.h>
33#include <machine/segments.h>
34#include <machine/sysarch.h>
35
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
36int
37i386_get_ldt(int start, union descriptor *descs, int num)
38{
39 struct i386_ldt_args p;
40
41 p.start = start;
42 p.descs = descs;
43 p.num = num;
44
47 return sysarch(I386_GET_LDT, (char *)&p);
45 return sysarch(I386_GET_LDT, &p);
48}
46}