Project

General

Profile

Actions

Bug #1

closed

lib/libcr/sys/ cleanup

Added by kevin.kane over 18 years ago. Updated over 17 years ago.

Status:
Closed
Priority:
Low
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:

Description

1) make function defs ansi

--- ../mmap.c.klk 2005-12-06 17:02:49.000000000 -0500
+++ lib/libcr/sys/mmap.c 2005-12-06 17:00:30.000000000 -0500
@ -43,13 +43,7 @ * is not supplied by GCC 1.X but is supplied by GCC 2.X.
*/
void *
mmap(addr, len, prot, flags, fd, offset)
void * addr;
- size_t len;
- int prot;
- int flags;
- int fd;
- off_t offset;
+mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset) {

return((void *)(long)__syscall((quad_t)SYS_mmap, addr, len, prot, flags,
Actions #1

Updated by corecode over 18 years ago

kevin kane wrote:

1) make function defs ansi

we appreciate your effort in cleaning up the sources, yet i am not sure
if we should spend time on libcr at the moment, as it is very outdated
and not used at all.

What do people think?

cheers
simon

Actions #2

Updated by dillon over 18 years ago

:kevin kane wrote:
:> 1) make function defs ansi
:
:we appreciate your effort in cleaning up the sources, yet i am not sure
:if we should spend time on libcr at the moment, as it is very outdated
:and not used at all.
:
:What do people think?
:
:cheers
: simon

It's probably going to be thrown away now that libc is rapidly becoming
thread-friendly.
-Matt
Matthew Dillon
<>
Actions

Also available in: Atom PDF