-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nginx submission #36
Nginx submission #36
Conversation
2b0cab5
to
b2ebe6f
Compare
ulib/ruxlibc/c/pwd.c
Outdated
|
||
int getpwnam_r(const char *name, struct passwd *pw, char *buf, size_t size, struct passwd **res) | ||
{ | ||
unimplemented(); | ||
return 0; | ||
} | ||
// TODO | ||
int sem_destroy(sem_t *sem) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicated with semaphore.c
ulib/ruxlibc/c/resource.c
Outdated
return 0; | ||
} | ||
|
||
ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicated with sendfile.c
ulib/ruxlibc/c/pwd.c
Outdated
|
||
int getpwuid_r(uid_t uid, struct passwd *pw, char *buf, size_t size, struct passwd **res) | ||
{ | ||
unimplemented(); | ||
return 0; | ||
} | ||
|
||
// TODO | ||
int sem_init(sem_t *sem, int pshared, unsigned int value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicated
ulib/ruxlibc/c/pwd.c
Outdated
return pwd; | ||
} | ||
|
||
// TODO |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicated
ulib/ruxlibc/c/pwd.c
Outdated
} | ||
|
||
// TODO | ||
int sem_wait(sem_t *sem) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicated
b2ebe6f
to
cfaa853
Compare
submission version of pr to add nginx app