Deleted Added
full compact
fpu.h (262752) fpu.h (267767)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)npx.h 5.3 (Berkeley) 1/18/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)npx.h 5.3 (Berkeley) 1/18/91
33 * $FreeBSD: head/sys/amd64/include/fpu.h 262752 2014-03-04 21:35:57Z jkim $
33 * $FreeBSD: head/sys/amd64/include/fpu.h 267767 2014-06-23 07:37:54Z kib $
34 */
35
36/*
37 * Floating Point Data Structures and Constants
38 * W. Jolitz 1/90
39 */
40
41#ifndef _MACHINE_FPU_H_

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

79void fpu_save_area_free(struct savefpu *fsa);
80void fpu_save_area_reset(struct savefpu *fsa);
81
82/*
83 * Flags for fpu_kern_alloc_ctx(), fpu_kern_enter() and fpu_kern_thread().
84 */
85#define FPU_KERN_NORMAL 0x0000
86#define FPU_KERN_NOWAIT 0x0001
34 */
35
36/*
37 * Floating Point Data Structures and Constants
38 * W. Jolitz 1/90
39 */
40
41#ifndef _MACHINE_FPU_H_

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

79void fpu_save_area_free(struct savefpu *fsa);
80void fpu_save_area_reset(struct savefpu *fsa);
81
82/*
83 * Flags for fpu_kern_alloc_ctx(), fpu_kern_enter() and fpu_kern_thread().
84 */
85#define FPU_KERN_NORMAL 0x0000
86#define FPU_KERN_NOWAIT 0x0001
87#define FPU_KERN_KTHR 0x0002
87
88#endif
89
90#endif /* !_MACHINE_FPU_H_ */
88
89#endif
90
91#endif /* !_MACHINE_FPU_H_ */