-
Notifications
You must be signed in to change notification settings - Fork 7
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
Beta10 #135
Conversation
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
… as parameter. Minor fixes
…correctly. Added a client-server example that use poll(). Some small fixes
Avoid struct poking and save a few lines of code by using GetPID() in dos.library.
Don't assume that complex math isn't supported just because __STDC_VERSION__ isn't defined. This will trick configure scripts to assume that complex math isn't supported when g++ is used. By checking __GCC_IEC_559_COMPLEX as well, this problem is solved.
Merge Unixsockets branch into beta10
…n_is_defined Don't assume that __STDC_VERSION__ is defined.
Use native GetPID() in unistd getpid().
Added shared library skeleton
…d a test program to open/close it
…s and all other stuff is working correctly. There are some problems with varargs needs to be fixed
…clib2.library seems to work
…d library stuff. Moved exe initialization into main.c file. Fixed library expunge
…rt. Added aio constructors and destructors and removed old cleanup/initialization code in libc. Added reeentrant errno
…e time global variables was missing
…ev/urandom to RANDOM:
…s version strings from libraries
…s will fix problems with newlib libraries loaded by third programs
Sharing data
…ons use OS4 Mutexes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Merge beta10 into master.
clib2 now is an AmigaOS shared library. libc.a and libm.a now are only stubs that calls clib2 functions
clib2 now is fully reentrant
Implemented unix sockets
Reworked pthread mutexes functions to use AmigaOS4 Mutexes
Added many new functions
Many fixes