| Commit message (Expand) | Author | Age | Files | Lines |
| * | update COPYRIGHT file to clarify that permissions apply for all files•••these changes are the outcome of a long mailing list thread that took
place March 2016, "musl licensing". among minor other issues,
prospective users were not confident that the whole-project MIT
license would grant permission for files to which the COPYRIGHT file
expressed a belief that copyright not apply, if it turned out that
these files were actually subject to copyright.
in accordance with the original intent of applying a permissive
license to the project, which was that license issues not be an
obstacle to use, the text which was causing confusion is removed. no
new claims of copyright are made, but new text is added to clarify
that the grant of permissions applies to all files, and an explicit
grant of permission to use public headers and crt files without
attribution has been made.
this patch was reviewed and approved by all substantial contributors
to the affected files: Bobby Bingham, John Spencer (rofl0r), Nicholas
J. Kain, Rich Felker, Richard Pennington, Stefan Kristiansson, and
Szabolcs Nagy.
| Rich Felker | 2016-04-28 | 1 | -14/+23 |
| * | fix outdated pathnames in COPYRIGHT file | Rich Felker | 2016-03-18 | 1 | -3/+3 |
| * | update documentation files for mips64 port | Rich Felker | 2016-03-06 | 1 | -0/+5 |
| * | update authors/contributors list•••these additions were made based on scanning commit authors since the
last update, at the time of the 1.1.7 release, and adding everyone
with either substantial code contributions or a pattern of ongoing
simple patch submission.
| Rich Felker | 2016-02-18 | 1 | -0/+9 |
| * | update authors/contributors list•••these additions were made based on scanning commit authors since the
last update, at the time of the 1.1.4 release.
| Rich Felker | 2015-03-16 | 1 | -0/+8 |
| * | update COPYRIGHT file to reflect new contributors | Rich Felker | 2014-07-31 | 1 | -1/+5 |
| * | update COPYRIGHT file with additional contributor information | Rich Felker | 2014-03-20 | 1 | -19/+51 |
| * | update copyright dates to 2014 | Rich Felker | 2014-03-06 | 1 | -2/+2 |
| * | add arm-optimized memcpy implementation from bionic libc•••the approach of this implementation was heavily investigated prior to
adopting it. attempts to obtain similar performance with pure C code
were capping out at about 75% of the performance of the asm, with
considerably larger code size, and were fragile in that the compiler
would sometimes compile part of memcpy into a call to itself.
therefore, just using the asm seems to be the best option.
this commit is the first to make use of the new subarch-specific asm
framework. the new armel directory is the location for arm asm that
should not be used for all arm subarchs, only the default one. armhf
is the name of the little-endian hardfloat-ABI subarch, which can use
the exact same asm. in both cases, the build system finds the asm by
following a memcpy.sub file.
the other two subarchs, armeb and armebhf, would need a big-endian
variant of this code. it would not be hard to adapt the code to big
endian, but I will hold off on doing so until there is demand for it.
| Rich Felker | 2013-08-14 | 1 | -0/+4 |
| * | mention bits headers in another part of copyright file | Rich Felker | 2013-04-20 | 1 | -1/+1 |
| * | update copyright year | Rich Felker | 2013-04-20 | 1 | -2/+2 |
| * | clarify that bits headers are included as public headers | Rich Felker | 2013-04-20 | 1 | -6/+6 |
| * | update copyright file for recent contributions | Rich Felker | 2012-11-14 | 1 | -5/+9 |
| * | update copyright/credits for recent code additions | Rich Felker | 2012-08-15 | 1 | -2/+12 |
| * | relicense musl under MIT license | Rich Felker | 2012-05-05 | 1 | -11/+33 |
| * | update license of njk contributed code (x86_64 asm)•••these changes are based on the following communication via email:
"I hereby grant that all of the code I have contributed to musl on or
before April 23, 2012 may be licensed under the terms of the following
MIT license:
Copyright (c) 2011-2012 Nicholas J. Kain
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
| Rich Felker | 2012-05-05 | 1 | -2/+4 |
| * | update COPYRIGHT status of TRE regex code | Rich Felker | 2012-03-24 | 1 | -4/+4 |
| * | Merge remote branch 'nsz/master' | Rich Felker | 2012-03-16 | 1 | -5/+9 |
| |\ |
|
| | * | fix copyright notice for the math lib | nsz | 2012-03-13 | 1 | -5/+9 |
| * | | revert COPYRIGHT file changes in preparation to merge nsz's math branch | Rich Felker | 2012-03-16 | 1 | -4/+5 |
| * | | update copyright status (math library and new year) | Rich Felker | 2012-03-16 | 1 | -6/+5 |
| |/ |
|
| * | XSI search.h API implementation by Szabolcs Nagy | Rich Felker | 2011-06-25 | 1 | -3/+5 |
| * | initial commit of prng implementation by Szabolcs Nagy | Rich Felker | 2011-06-23 | 1 | -0/+4 |
| * | replace heap sort with smoothsort implementation by Valentin Ochs•••Smoothsort is an adaptive variant of heapsort. This version was
written by Valentin Ochs (apo) specifically for inclusion in musl. I
worked with him to get it working in O(1) memory usage even with giant
array element widths, and to optimize it heavily for size and speed.
It's still roughly 4 times as large as the old heap sort
implementation, but roughly 20 times faster given an almost-sorted
array of 1M elements (20 being the base-2 log of 1M), i.e. it really
does reduce O(n log n) to O(n) in the mostly-sorted case. It's still
somewhat slower than glibc's Introsort for random input, but now
considerably faster than glibc when the input is already sorted, or
mostly sorted.
| Rich Felker | 2011-04-27 | 1 | -0/+4 |
| * | some docs fixes for x86_64 | Rich Felker | 2011-02-15 | 1 | -0/+3 |
| * | explicitly release crt/* to the public domain | Rich Felker | 2011-02-13 | 1 | -0/+6 |
| * | initial check-in, version 0.5.0 | Rich Felker | 2011-02-12 | 1 | -0/+31 |