syscall.c (2d8ad8719591fa803b0d589ed057fa46f49b7155) | syscall.c (e56293b129607be089f2c12906d709e3c84b68c4) |
---|---|
1/* 2 * This file is subject to the terms and conditions of the GNU General Public 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 * Copyright (C) 1995, 1996, 1997, 2000, 2001, 05 by Ralf Baechle 7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc. 8 * Copyright (C) 2001 MIPS Technologies, Inc. --- 391 unchanged lines hidden (view full) --- 400 401 if (arg1 & 1) 402 set_thread_flag(TIF_FIXADE); 403 else 404 clear_thread_flag(TIF_FIXADE); 405 if (arg1 & 2) 406 set_thread_flag(TIF_LOGADE); 407 else | 1/* 2 * This file is subject to the terms and conditions of the GNU General Public 3 * License. See the file "COPYING" in the main directory of this archive 4 * for more details. 5 * 6 * Copyright (C) 1995, 1996, 1997, 2000, 2001, 05 by Ralf Baechle 7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc. 8 * Copyright (C) 2001 MIPS Technologies, Inc. --- 391 unchanged lines hidden (view full) --- 400 401 if (arg1 & 1) 402 set_thread_flag(TIF_FIXADE); 403 else 404 clear_thread_flag(TIF_FIXADE); 405 if (arg1 & 2) 406 set_thread_flag(TIF_LOGADE); 407 else |
408 clear_thread_flag(TIF_FIXADE); | 408 clear_thread_flag(TIF_LOGADE); |
409 410 return 0; 411 412 case FLUSH_CACHE: 413 __flush_cache_all(); 414 return 0; 415 } 416 --- 50 unchanged lines hidden --- | 409 410 return 0; 411 412 case FLUSH_CACHE: 413 __flush_cache_all(); 414 return 0; 415 } 416 --- 50 unchanged lines hidden --- |