-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Some update for vxWorks #1473
Merged
Merged
Some update for vxWorks #1473
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c282904
1. adding randBytes(), randABytes(), randUBytes(), randSecure() and t…
bpangWR e1a417f
Merge pull request #1 from Wind-River/bpang-issue1469
BaoshanPang de98bf9
remove spurious extra line
bpangWR e43e863
Merge pull request #2 from Wind-River/bpang-issue1469
BaoshanPang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
//! Hacking together the definitions for VxWorks Bindings | ||
//! Interface to VxWorks C library | ||
|
||
use core::mem::size_of; | ||
use core::ptr::null_mut; | ||
|
||
|
@@ -188,7 +189,7 @@ s! { | |
pub __ss_pad2 : [::c_char; 32], | ||
pub __ss_pad3 : [::c_char; 32], | ||
pub __ss_pad4 : [::c_char; 32], | ||
pub __ss_pad5 : [::c_char; 32], | ||
pub __ss_pad5 : [::c_char; _SS_PAD2SIZE - 96], | ||
} | ||
pub struct iovec { | ||
pub iov_base: *mut ::c_void, | ||
|
@@ -963,15 +964,7 @@ extern { | |
pub fn isxdigit(c: c_int) -> c_int; | ||
pub fn tolower(c: c_int) -> c_int; | ||
pub fn toupper(c: c_int) -> c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "fopen$UNIX2003" | ||
)] | ||
pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "freopen$UNIX2003" | ||
)] | ||
pub fn freopen( | ||
filename: *const c_char, | ||
mode: *const c_char, | ||
|
@@ -995,10 +988,6 @@ extern { | |
pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) | ||
-> *mut c_char; | ||
pub fn fputc(c: c_int, stream: *mut FILE) -> c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "fputs$UNIX2003" | ||
)] | ||
pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int; | ||
pub fn puts(s: *const c_char) -> c_int; | ||
pub fn ungetc(c: c_int, stream: *mut FILE) -> c_int; | ||
|
@@ -1008,10 +997,6 @@ extern { | |
nobj: size_t, | ||
stream: *mut FILE, | ||
) -> size_t; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "fwrite$UNIX2003" | ||
)] | ||
pub fn fwrite( | ||
ptr: *const c_void, | ||
size: size_t, | ||
|
@@ -1021,18 +1006,12 @@ extern { | |
pub fn fseek(stream: *mut FILE, offset: c_long, whence: c_int) -> c_int; | ||
pub fn ftell(stream: *mut FILE) -> c_long; | ||
pub fn rewind(stream: *mut FILE); | ||
#[cfg_attr(target_os = "netbsd", link_name = "__fgetpos50")] | ||
pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__fsetpos50")] | ||
pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int; | ||
pub fn feof(stream: *mut FILE) -> c_int; | ||
pub fn ferror(stream: *mut FILE) -> c_int; | ||
pub fn perror(s: *const c_char); | ||
pub fn atoi(s: *const c_char) -> c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "strtod$UNIX2003" | ||
)] | ||
pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double; | ||
pub fn strtol( | ||
s: *const c_char, | ||
|
@@ -1052,10 +1031,6 @@ extern { | |
pub fn exit(status: c_int) -> !; | ||
// pub fn _exit(status: c_int) -> !; | ||
pub fn atexit(cb: extern fn()) -> c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "system$UNIX2003" | ||
)] | ||
pub fn system(s: *const c_char) -> c_int; | ||
pub fn getenv(s: *const c_char) -> *mut c_char; | ||
|
||
|
@@ -1089,10 +1064,6 @@ extern { | |
) -> c_int; | ||
pub fn strlen(cs: *const c_char) -> size_t; | ||
pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "strerror$UNIX2003" | ||
)] | ||
pub fn strerror(n: c_int) -> *mut c_char; | ||
pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char; | ||
pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; | ||
|
@@ -1119,9 +1090,7 @@ extern { | |
} | ||
|
||
extern { | ||
#[cfg_attr(target_os = "netbsd", link_name = "__getpwnam50")] | ||
pub fn getpwnam(name: *const ::c_char) -> *mut passwd; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__getpwuid50")] | ||
pub fn getpwuid(uid: ::uid_t) -> *mut passwd; | ||
|
||
pub fn fprintf( | ||
|
@@ -1147,29 +1116,12 @@ extern { | |
-> ::c_int; | ||
pub fn getchar_unlocked() -> ::c_int; | ||
pub fn putchar_unlocked(c: ::c_int) -> ::c_int; | ||
|
||
pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int; | ||
|
||
pub fn pclose(stream: *mut ::FILE) -> ::c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "fdopen$UNIX2003" | ||
)] | ||
pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE; | ||
pub fn fileno(stream: *mut ::FILE) -> ::c_int; | ||
|
||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "open$UNIX2003" | ||
)] | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "creat$UNIX2003" | ||
)] | ||
pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int; | ||
|
||
pub fn fdopendir(fd: ::c_int) -> *mut ::DIR; | ||
|
||
pub fn rewinddir(dirp: *mut ::DIR); | ||
|
||
pub fn openat( | ||
|
@@ -1192,8 +1144,6 @@ extern { | |
group: ::gid_t, | ||
flags: ::c_int, | ||
) -> ::c_int; | ||
#[cfg_attr(target_os = "macos", link_name = "fstatat$INODE64")] | ||
#[cfg_attr(target_os = "freebsd", link_name = "fstatat@FBSD_1.1")] | ||
pub fn fstatat( | ||
dirfd: ::c_int, | ||
pathname: *const ::c_char, | ||
|
@@ -1234,10 +1184,6 @@ extern { | |
pub fn alarm(seconds: ::c_uint) -> ::c_uint; | ||
pub fn fchdir(dirfd: ::c_int) -> ::c_int; | ||
pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "lchown$UNIX2003" | ||
)] | ||
pub fn lchown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int; | ||
pub fn execl(path: *const c_char, arg0: *const c_char, ...) -> ::c_int; | ||
pub fn execle( | ||
|
@@ -1282,39 +1228,13 @@ extern { | |
pub fn tcsetpgrp(fd: ::c_int, pgrp: ::pid_t) -> ::c_int; | ||
pub fn ttyname(fd: ::c_int) -> *mut c_char; | ||
pub fn wait(status: *mut ::c_int) -> pid_t; | ||
/* | ||
pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, | ||
offset: off_t) -> ::ssize_t; | ||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"), | ||
link_name = "pwrite$UNIX2003")] | ||
pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, | ||
offset: off_t) -> ::ssize_t; | ||
*/ | ||
pub fn umask(mask: mode_t) -> mode_t; | ||
|
||
// #[cfg_attr(target_os = "netbsd", link_name = "__utime50")] | ||
// pub fn utime(file: *const c_char, buf: *const utimbuf) -> ::c_int; | ||
|
||
/* | ||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"), | ||
link_name = "kill$UNIX2003")] | ||
pub fn kill(pid: pid_t, sig: ::c_int) -> ::c_int; | ||
*/ | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "killpg$UNIX2003" | ||
)] | ||
pub fn killpg(pgrp: pid_t, sig: ::c_int) -> ::c_int; | ||
|
||
pub fn mlock(addr: *const ::c_void, len: ::size_t) -> ::c_int; | ||
pub fn munlock(addr: *const ::c_void, len: ::size_t) -> ::c_int; | ||
pub fn mlockall(flags: ::c_int) -> ::c_int; | ||
pub fn munlockall() -> ::c_int; | ||
|
||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "mmap$UNIX2003" | ||
)] | ||
pub fn mmap( | ||
addr: *mut ::c_void, | ||
len: ::size_t, | ||
|
@@ -1323,10 +1243,7 @@ extern { | |
fd: ::c_int, | ||
offset: off_t, | ||
) -> *mut ::c_void; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "munmap$UNIX2003" | ||
)] | ||
|
||
pub fn munmap(addr: *mut ::c_void, len: ::size_t) -> ::c_int; | ||
|
||
pub fn if_nametoindex(ifname: *const c_char) -> ::c_uint; | ||
|
@@ -1337,28 +1254,10 @@ extern { | |
|
||
pub fn truncate(path: *const c_char, length: off_t) -> ::c_int; | ||
|
||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "getrlimit$UNIX2003" | ||
)] | ||
pub fn getrlimit(resource: ::c_int, rlim: *mut rlimit) -> ::c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "setrlimit$UNIX2003" | ||
)] | ||
pub fn setrlimit(resource: ::c_int, rlim: *const rlimit) -> ::c_int; | ||
// #[cfg_attr(target_os = "netbsd", link_name = "__getrusage50")] | ||
// pub fn getrusage(resource: ::c_int, usage: *mut rusage) -> ::c_int; | ||
|
||
/* | ||
#[cfg_attr(any(target_os = "macos", target_os = "ios"), | ||
link_name = "realpath$DARWIN_EXTSN")] | ||
pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) | ||
-> *mut ::c_char; | ||
*/ | ||
pub fn flock(fd: ::c_int, operation: ::c_int) -> ::c_int; | ||
|
||
#[cfg_attr(target_os = "netbsd", link_name = "__gettimeofday50")] | ||
pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::c_void) -> ::c_int; | ||
pub fn pthread_exit(value: *mut ::c_void); | ||
pub fn pthread_attr_setdetachstate( | ||
|
@@ -1378,7 +1277,6 @@ extern { | |
oldact: *mut sigaction, | ||
) -> ::c_int; | ||
|
||
#[cfg_attr(target_os = "netbsd", link_name = "__utimes50")] | ||
pub fn utimes( | ||
filename: *const ::c_char, | ||
times: *const ::timeval, | ||
|
@@ -1391,67 +1289,28 @@ extern { | |
) -> *mut ::c_void; | ||
pub fn dlclose(handle: *mut ::c_void) -> ::c_int; | ||
pub fn res_init() -> ::c_int; | ||
/* | ||
#[cfg_attr(target_os = "netbsd", link_name = "__gmtime_r50")] | ||
pub fn gmtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__localtime_r50")] | ||
pub fn localtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm; | ||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"), | ||
link_name = "mktime$UNIX2003")] | ||
#[cfg_attr(target_os = "netbsd", link_name = "__mktime50")] | ||
pub fn mktime(tm: *mut tm) -> time_t; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__time50")] | ||
pub fn time(time: *mut time_t) -> time_t; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__gmtime50")] | ||
pub fn gmtime(time_p: *const time_t) -> *mut tm; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__locatime50")] | ||
pub fn localtime(time_p: *const time_t) -> *mut tm; | ||
*/ | ||
#[cfg_attr(target_os = "netbsd", link_name = "__difftime50")] | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. spurious extra line ? |
||
pub fn difftime(time1: time_t, time0: time_t) -> ::c_double; | ||
|
||
#[cfg_attr(target_os = "netbsd", link_name = "__mknod50")] | ||
#[cfg_attr(target_os = "freebsd", link_name = "mknod@FBSD_1.0")] | ||
pub fn mknod( | ||
pathname: *const ::c_char, | ||
mode: ::mode_t, | ||
dev: ::dev_t, | ||
) -> ::c_int; | ||
pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int; | ||
// pub fn getservbyname(name: *const ::c_char, | ||
// proto: *const ::c_char) -> *mut servent; | ||
// pub fn getprotobyname(name: *const ::c_char) -> *mut protoent; | ||
// pub fn getprotobynumber(proto: ::c_int) -> *mut protoent; | ||
pub fn chroot(name: *const ::c_char) -> ::c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "usleep$UNIX2003" | ||
)] | ||
pub fn usleep(secs: ::c_uint) -> ::c_int; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "putenv$UNIX2003" | ||
)] | ||
pub fn putenv(string: *mut c_char) -> ::c_int; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__select50")] | ||
// pub fn select(nfds: ::c_int, | ||
// readfs: *mut fd_set, | ||
// writefds: *mut fd_set, | ||
// errorfds: *mut fd_set, | ||
// timeout: *mut timeval) -> ::c_int; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__setlocale50")] | ||
pub fn setlocale( | ||
category: ::c_int, | ||
locale: *const ::c_char, | ||
) -> *mut ::c_char; | ||
// pub fn localeconv() -> *mut lconv; | ||
|
||
pub fn sigprocmask( | ||
how: ::c_int, | ||
set: *const sigset_t, | ||
oldset: *mut sigset_t, | ||
) -> ::c_int; | ||
#[cfg_attr(target_os = "netbsd", link_name = "__sigpending14")] | ||
pub fn sigpending(set: *mut sigset_t) -> ::c_int; | ||
|
||
pub fn getsid(pid: pid_t) -> pid_t; | ||
|
@@ -1464,10 +1323,6 @@ extern { | |
whence: ::c_int, | ||
) -> ::c_int; | ||
pub fn ftello(stream: *mut ::FILE) -> ::off_t; | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "tcdrain$UNIX2003" | ||
)] | ||
pub fn tcdrain(fd: ::c_int) -> ::c_int; | ||
pub fn tcflow(fd: ::c_int, action: ::c_int) -> ::c_int; | ||
pub fn tcflush(fd: ::c_int, action: ::c_int) -> ::c_int; | ||
|
@@ -1481,12 +1336,7 @@ extern { | |
pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int); | ||
pub fn closelog(); | ||
pub fn setlogmask(maskpri: ::c_int) -> ::c_int; | ||
#[cfg_attr(target_os = "macos", link_name = "syslog$DARWIN_EXTSN")] | ||
pub fn syslog(priority: ::c_int, message: *const ::c_char, ...); | ||
#[cfg_attr( | ||
all(target_os = "macos", target_arch = "x86"), | ||
link_name = "nice$UNIX2003" | ||
)] | ||
pub fn nice(incr: ::c_int) -> ::c_int; | ||
|
||
pub fn grantpt(fd: ::c_int) -> ::c_int; | ||
|
@@ -2141,6 +1991,7 @@ extern { | |
pub fn raise(__signo: ::c_int) -> ::c_int; | ||
// taskLibCommon.h | ||
pub fn taskIdSelf() -> ::TASK_ID; | ||
pub fn taskDelay(ticks: ::_Vx_ticks_t) -> ::c_int; | ||
|
||
// rtpLibCommon.h | ||
pub fn rtpInfoGet(rtpId: ::RTP_ID, rtpStruct: *mut ::RTP_DESC) -> ::c_int; | ||
|
@@ -2167,6 +2018,12 @@ extern { | |
iov: *const ::iovec, | ||
iovcnt: ::c_int, | ||
) -> ::ssize_t; | ||
|
||
// randomNumGen.h | ||
pub fn randBytes(buf: *mut c_uchar, length: c_int) -> c_int; | ||
pub fn randABytes(buf: *mut c_uchar, length: c_int) -> c_int; | ||
pub fn randUBytes(buf: *mut c_uchar, length: c_int) -> c_int; | ||
pub fn randSecure() -> c_int; | ||
} | ||
|
||
pub fn dladdr(addr: *const ::c_void, info: *mut Dl_info) -> ::c_int { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
spurious extra line ?