diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-12-06 23:37:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:37 -0500 |
commit | f5738ceed46782aea7663d62cb6398eb05fc4ce0 (patch) | |
tree | 156ebf498bc1d892d6f9e33d2751869417e30eb4 /include/asm-sparc | |
parent | 28ec24e23229ae3d333f8d7f0e6b31fa8ea7bf46 (diff) |
[PATCH] remove kernel syscalls
The last thing we agreed on was to remove the macros entirely for 2.6.19,
on all architectures. Unfortunately, I think nobody actually _did_ that,
so they are still there.
[akpm@osdl.org: x86_64 fix]
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Greg Schafer <gschafer@zip.com.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-sparc')
-rw-r--r-- | include/asm-sparc/unistd.h | 130 |
1 files changed, 0 insertions, 130 deletions
diff --git a/include/asm-sparc/unistd.h b/include/asm-sparc/unistd.h index f7827fa4cd5e..d5b2f8053b3b 100644 --- a/include/asm-sparc/unistd.h +++ b/include/asm-sparc/unistd.h | |||
@@ -329,136 +329,6 @@ | |||
329 | * find a free slot in the 0-302 range. | 329 | * find a free slot in the 0-302 range. |
330 | */ | 330 | */ |
331 | 331 | ||
332 | #define _syscall0(type,name) \ | ||
333 | type name(void) \ | ||
334 | { \ | ||
335 | long __res; \ | ||
336 | register long __g1 __asm__ ("g1") = __NR_##name; \ | ||
337 | __asm__ __volatile__ ("t 0x10\n\t" \ | ||
338 | "bcc 1f\n\t" \ | ||
339 | "mov %%o0, %0\n\t" \ | ||
340 | "sub %%g0, %%o0, %0\n\t" \ | ||
341 | "1:\n\t" \ | ||
342 | : "=r" (__res)\ | ||
343 | : "r" (__g1) \ | ||
344 | : "o0", "cc"); \ | ||
345 | if (__res < -255 || __res >= 0) \ | ||
346 | return (type) __res; \ | ||
347 | errno = -__res; \ | ||
348 | return -1; \ | ||
349 | } | ||
350 | |||
351 | #define _syscall1(type,name,type1,arg1) \ | ||
352 | type name(type1 arg1) \ | ||
353 | { \ | ||
354 | long __res; \ | ||
355 | register long __g1 __asm__ ("g1") = __NR_##name; \ | ||
356 | register long __o0 __asm__ ("o0") = (long)(arg1); \ | ||
357 | __asm__ __volatile__ ("t 0x10\n\t" \ | ||
358 | "bcc 1f\n\t" \ | ||
359 | "mov %%o0, %0\n\t" \ | ||
360 | "sub %%g0, %%o0, %0\n\t" \ | ||
361 | "1:\n\t" \ | ||
362 | : "=r" (__res), "=&r" (__o0) \ | ||
363 | : "1" (__o0), "r" (__g1) \ | ||
364 | : "cc"); \ | ||
365 | if (__res < -255 || __res >= 0) \ | ||
366 | return (type) __res; \ | ||
367 | errno = -__res; \ | ||
368 | return -1; \ | ||
369 | } | ||
370 | |||
371 | #define _syscall2(type,name,type1,arg1,type2,arg2) \ | ||
372 | type name(type1 arg1,type2 arg2) \ | ||
373 | { \ | ||
374 | long __res; \ | ||
375 | register long __g1 __asm__ ("g1") = __NR_##name; \ | ||
376 | register long __o0 __asm__ ("o0") = (long)(arg1); \ | ||
377 | register long __o1 __asm__ ("o1") = (long)(arg2); \ | ||
378 | __asm__ __volatile__ ("t 0x10\n\t" \ | ||
379 | "bcc 1f\n\t" \ | ||
380 | "mov %%o0, %0\n\t" \ | ||
381 | "sub %%g0, %%o0, %0\n\t" \ | ||
382 | "1:\n\t" \ | ||
383 | : "=r" (__res), "=&r" (__o0) \ | ||
384 | : "1" (__o0), "r" (__o1), "r" (__g1) \ | ||
385 | : "cc"); \ | ||
386 | if (__res < -255 || __res >= 0) \ | ||
387 | return (type) __res; \ | ||
388 | errno = -__res; \ | ||
389 | return -1; \ | ||
390 | } | ||
391 | |||
392 | #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ | ||
393 | type name(type1 arg1,type2 arg2,type3 arg3) \ | ||
394 | { \ | ||
395 | long __res; \ | ||
396 | register long __g1 __asm__ ("g1") = __NR_##name; \ | ||
397 | register long __o0 __asm__ ("o0") = (long)(arg1); \ | ||
398 | register long __o1 __asm__ ("o1") = (long)(arg2); \ | ||
399 | register long __o2 __asm__ ("o2") = (long)(arg3); \ | ||
400 | __asm__ __volatile__ ("t 0x10\n\t" \ | ||
401 | "bcc 1f\n\t" \ | ||
402 | "mov %%o0, %0\n\t" \ | ||
403 | "sub %%g0, %%o0, %0\n\t" \ | ||
404 | "1:\n\t" \ | ||
405 | : "=r" (__res), "=&r" (__o0) \ | ||
406 | : "1" (__o0), "r" (__o1), "r" (__o2), "r" (__g1) \ | ||
407 | : "cc"); \ | ||
408 | if (__res < -255 || __res>=0) \ | ||
409 | return (type) __res; \ | ||
410 | errno = -__res; \ | ||
411 | return -1; \ | ||
412 | } | ||
413 | |||
414 | #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ | ||
415 | type name (type1 arg1, type2 arg2, type3 arg3, type4 arg4) \ | ||
416 | { \ | ||
417 | long __res; \ | ||
418 | register long __g1 __asm__ ("g1") = __NR_##name; \ | ||
419 | register long __o0 __asm__ ("o0") = (long)(arg1); \ | ||
420 | register long __o1 __asm__ ("o1") = (long)(arg2); \ | ||
421 | register long __o2 __asm__ ("o2") = (long)(arg3); \ | ||
422 | register long __o3 __asm__ ("o3") = (long)(arg4); \ | ||
423 | __asm__ __volatile__ ("t 0x10\n\t" \ | ||
424 | "bcc 1f\n\t" \ | ||
425 | "mov %%o0, %0\n\t" \ | ||
426 | "sub %%g0, %%o0, %0\n\t" \ | ||
427 | "1:\n\t" \ | ||
428 | : "=r" (__res), "=&r" (__o0) \ | ||
429 | : "1" (__o0), "r" (__o1), "r" (__o2), "r" (__o3), "r" (__g1) \ | ||
430 | : "cc"); \ | ||
431 | if (__res < -255 || __res>=0) \ | ||
432 | return (type) __res; \ | ||
433 | errno = -__res; \ | ||
434 | return -1; \ | ||
435 | } | ||
436 | |||
437 | #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ | ||
438 | type5,arg5) \ | ||
439 | type name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5) \ | ||
440 | { \ | ||
441 | long __res; \ | ||
442 | register long __g1 __asm__ ("g1") = __NR_##name; \ | ||
443 | register long __o0 __asm__ ("o0") = (long)(arg1); \ | ||
444 | register long __o1 __asm__ ("o1") = (long)(arg2); \ | ||
445 | register long __o2 __asm__ ("o2") = (long)(arg3); \ | ||
446 | register long __o3 __asm__ ("o3") = (long)(arg4); \ | ||
447 | register long __o4 __asm__ ("o4") = (long)(arg5); \ | ||
448 | __asm__ __volatile__ ("t 0x10\n\t" \ | ||
449 | "bcc 1f\n\t" \ | ||
450 | "mov %%o0, %0\n\t" \ | ||
451 | "sub %%g0, %%o0, %0\n\t" \ | ||
452 | "1:\n\t" \ | ||
453 | : "=r" (__res), "=&r" (__o0) \ | ||
454 | : "1" (__o0), "r" (__o1), "r" (__o2), "r" (__o3), "r" (__o4), "r" (__g1) \ | ||
455 | : "cc"); \ | ||
456 | if (__res < -255 || __res>=0) \ | ||
457 | return (type) __res; \ | ||
458 | errno = -__res; \ | ||
459 | return -1; \ | ||
460 | } | ||
461 | |||
462 | #define __ARCH_WANT_IPC_PARSE_VERSION | 332 | #define __ARCH_WANT_IPC_PARSE_VERSION |
463 | #define __ARCH_WANT_OLD_READDIR | 333 | #define __ARCH_WANT_OLD_READDIR |
464 | #define __ARCH_WANT_STAT64 | 334 | #define __ARCH_WANT_STAT64 |