summaryrefslogtreecommitdiff
path: root/usr/src/lib/libc
AgeCommit message (Collapse)AuthorFilesLines
2011-11-02richlowe GCC4 mergeJohn Sonnenschein9-159/+269
2011-11-02[OS-714] illumos mergeJohn Sonnenschein4-57/+126
Merge git://github.com/illumos/illumos-gate Conflicts: usr/src/uts/common/inet/tcp/tcp_input.c
2011-10-291678 libc lint library is missing definition for glob/globfreeYuri Pankov1-0/+7
Reviewed by: Garrett D'Amore <garrett@damore.org> Reviewed by: Albert Lee <trisk@opensolaris.org> Approved by: Richard Lowe <richlowe@richlowe.net>
2011-10-20Merge branch 'master' of http://github.com/illumos/illumos-gate into gcc/upgradeRichard Lowe3-57/+119
Conflicts: usr/src/cmd/sgs/libld/common/libs.c
2011-10-03[OS-663] Post-6.5 Illumos syncJohn Sonnenschein3-11/+25
Merge https://github.com/illumos/illumos-gate Conflicts: exception_lists/packaging usr/src/cmd/dtrace/test/cmd/scripts/dtest.pl usr/src/cmd/dtrace/test/tst/common/usdt/tst.badguess.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.enabled2.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.guess32.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.guess64.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.include.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.nodtrace.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.noreap.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.noreapring.ksh usr/src/cmd/dtrace/test/tst/common/usdt/tst.reap.ksh usr/src/cmd/lp/Makefile usr/src/cmd/lp/cmd/lpadmin/options.c usr/src/cmd/lp/cmd/lpfilter.c usr/src/cmd/lp/cmd/lpforms.c usr/src/cmd/lp/cmd/lpusers.c usr/src/cmd/lp/lib/lp/isterminfo.c usr/src/cmd/lp/lib/lp/tidbit.c usr/src/cmd/terminfo/att.ti usr/src/cmd/zpool/zpool_main.c usr/src/common/dis/i386/dis_tables.c usr/src/lib/libdtrace/common/dt_options.c usr/src/lib/libzfs/common/libzfs_dataset.c usr/src/man/man1m/dladm.1m usr/src/man/man1m/flowadm.1m usr/src/man/man1m/zoneadm.1m usr/src/man/man1m/zonecfg.1m usr/src/pkg/manifests/print-lp-print-client-commands.mf usr/src/pkg/manifests/print-lp.mf usr/src/uts/common/fs/zfs/sys/zio.h usr/src/uts/common/fs/zfs/zio.c usr/src/uts/i86pc/ml/mach_offsets.in usr/src/uts/intel/amd64/ml/mach_offsets.in usr/src/uts/intel/sys/tss.h
2011-08-28Merge branch 'master' of http://github.com/illumos/illumos-gate into gcc/upgradeRichard Lowe2-9/+16
Conflicts: usr/src/cmd/lp/cmd/lpadmin/options.c usr/src/cmd/man/src/man.c
2011-07-16Merge branch 'master' of http://github.com/illumos/illumos-gate into gcc/upgradeRichard Lowe1-2/+9
Conflicts: usr/src/uts/sun4u/opl/io/drmach.c usr/src/uts/sun4u/serengeti/io/sbdp_cpu.c usr/src/uts/sun4u/starfire/io/drmach.c
2011-07-02libc: Remove SPARC tls workarounds when using GCC 4Richard Lowe2-4/+6
2011-07-02libc: make install target depend on generated headersRichard Lowe1-1/+1
There a handful of generated headers in libc (assym.h), which need to exist for the build. They're removed by clobber but only created via install_h. Have 'install' depend on them as well so working in libc is less tedious.
2011-07-02libc: Implement __floatundisfRichard Lowe3-0/+49
2011-07-02libc: Implement __floatundidfRichard Lowe3-0/+49
2011-07-02libc: Mark %g7 as #scratch in _curthread, and implement directlyRichard Lowe1-5/+7
We do this because GCC 4.4 will spit out a .register declaration for %g7 which differs from those in __curthread if we do not.
2011-07-02libc: Don't let GCC optimize away __rtldRichard Lowe1-1/+10
2011-07-01Use __attribute__((__gnu_inline__)) on GCC ASMRichard Lowe2-148/+147
As a GCC extension, GCC used to define 'extern inline' to mean that a function was only ever emitted inline and no visible symbol was emitted. C99, however, made 'extern inline' mean pretty much the reverse of this, and GCC 4.3 and above in C99 or GNU99 modes follow the standard, so we have to decorate each definition to indicate we want the non-standard behaviour.
2011-05-27Merge branch 'master' of git://github.com/illumos/illumos-gate into developJohn Sonnenschein1-3/+3
2011-05-191046 wcsxfrm(3C) crashes when len arg is 0Gordon Ross1-3/+3
Reviewed by: Robert Gordon <rbg@openrbg.com> Reviewed by: Jason King <jason.brian.king@gmail.com> Reviewed by: Garrett D'Amore <garrett@nexenta.com> Approved by: Albert Lee <trisk@nexenta.com>
2011-10-181633 implement posix_spawn_pipe_np()Matthew Ahrens3-57/+119
Reviewed by: Adam Leventhal <Adam.Leventhal@delphix.com> Reviewed by: Eric Schrock <Eric.Schrock@delphix.com> Reviewed by: Dan McDonald <danmcd@nexenta.com> Reviewed by: Gordon Ross <gordon.w.ross@gmail.com> Approved by: Eric Schrock <Eric.Schrock@delphix.com>
2011-07-221232 setlocale switch to C is brokenJason King2-9/+16
Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: Garret D'Amore <garrett@nexenta.com> Reviewed by: Rich Lowe <richlowe@richlowe.net> Approved by: Eric Schrock <Eric.Schrock@delphix.com>
2011-05-13[OS-411] Guava Illumos syncJohn Sonnenschein10-235/+50
2011-07-111030 strftime "%x" should generate something strptime can parseGordon Ross1-2/+9
Reviewed by: Garrett D'Amore <garrett@nexenta.com> Reviewed by: Gary Mills <mills@cc.umanitoba.ca> Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-03-11OS-264 Merge from upstream (illumos)John Sonnenschein2-4/+4
2011-03-09781 overrun in fgetwsBryan Cantrill1-2/+2
Reviewed by: Garrett D'Amore <garrett@nexenta.com> Reviewed by: Gordon Ross <gwr@nexenta.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-03-08OS-295 sort(1M) croaks in _fgetws_impl()Bryan Cantrill1-1/+1
2011-01-31OS-180 need zoneid to be persistent across zone rebootJerry Jelinek1-1/+4
2011-03-29850 system(3C) and similar could just use /bin/shRichard Lowe4-30/+12
Reviewed by: Gordon Ross <gwr@nexenta.com> Reviewed by: John Sonnenschein <johns@joyent.com> Approved by: Garrett D'Amore <garrett@nexenta.com>
2011-04-10878 regerror() error messages not i18n compliantGarrett D'Amore3-119/+38
Reviewed by: Adam Leventhal <ahl@delphix.com> Approved by: Gordon Ross <gwr@nexenta.com>
2011-04-05842 src/lib/Makefile has libc_i18n vestigesGarrett D'Amore1-17/+0
Reviewed by: Rich Lowe <richlowe@richlowe.net> Reviewed by: Albert Lee <trisk@nexenta.com> Approved by: Gordon Ross <gwr@nexenta.com>
2011-04-03853 system/library is missing references to some license filesRichard Lowe2-69/+0
Reviewed by: gwr@nexenta.com Approved by: garrett@nexenta.com
2011-01-20652 libc uninitialized variableAlexander Stetsenko1-2/+2
Reviewed by: garrett@nexenta.com Approved by: garrett@nexenta.com
2011-01-13615 remove support legacy 7-bit ASCIIGarrett D'Amore8-225/+14
628 minor perf enhancement for UTF-8 Reviewed by: roland.mainz@nexenta.com Approved by: albert.lee@nexenta.com
2011-01-13616 euc code in libc not aligned with localedefGarrett D'Amore3-136/+231
Reviewed by: roland.mainz@nexenta.com Reviewed by: albert.lee@nexenta.com Approved by: albert.lee@nexenta.com
2010-12-15508 od doesn't set text domainGarrett D'Amore2-6/+19
509 need an open source sed(1) replacement 516 libc regex misses \< and \> word delimiters Reviewed by: gwr@nexenta.com Reviewed by: roland.mainz@nexenta.com Approved by: gwr@nexenta.com
2010-12-09298 SPARC build fails in smt_pause.oJon Tibble8-47/+12
478 Build needs fixing for pkgdepend flag day Reviewed by: gwr@nexenta.com Reviewed by: trisk@nexenta.com Reviewed by: richlowe@richlowe.net Approved by: garrett@nexenta.com
2010-12-07413 Memory corruption in regcmp(3c)Jason King1-30/+30
Reviewed by: garrett@nexenta.com Approved by: garrett@nexenta.com
2010-12-04317 strptime needs %Z supportGarrett D'Amore4-194/+272
Reviewed by: richlowe@richlowe.net Reviewed by: lvskiprof@cox.net Reviewed by: gwr@nexenta.com Approved by: richlowe@richlowe.net
2010-11-19298 SPARC build fails in smt_pause.oGarrett D'Amore3-4/+11
Reviewed by: gwr@nexenta.com Reviewed by: albert.lee@nexenta.com Reviewed by: estseg@gmail.com Approved by: gwr@nexenta.com
2010-10-21357 fix license on strptime.cGarrett D'Amore5-37/+16
358 the prototype CDDL header needs minor grammar fixes Reviewed by: trisk@opensolaris.org Reviewed by: gwr@nexenta.com Reviewed by: gber@openindiana.org
2010-10-11326 strxfrm could be fasterGarrett D'Amore2-76/+89
330 isprint() returns false for "legacy" code, results in bad prompt Reviewed by: gwr@nexenta.com Reviewed by: cjlove@san.rr.com Reviewed by: richlowe@richlowe.net Approved by: richlowe@richlowe.net
2010-10-088 libc locale work needs updated license filesGarrett D'Amore73-786/+1087
223 libc needs multibyte locale support for collation 225 libc locale binary files should be in native byte order 309 populate initial locales for illumos Reviewed by: gwr@nexenta.com Reviewed by: richlowe@richlowe.net Reviewed by: cjlove@san.rr.net Approved by: gwr@nexenta.com
2010-09-14187 locale -a dumps coreGarrett D'Amore2-18/+12
Reviewed by: richlowe@richlowe.net, gwr@nexenta.com, vineeth@nexenta.com Approved by: gwr@nexenta.com
2010-09-11174 libpthread uberdata stale after 6735446Gordon Ross1-0/+3
Reviewed by: richlowe@richlowe.net, Joerg.Schilling@fokus.fraunhofer.de Approved by: garrett@nexenta.com
2010-09-11169 Lack of "rune" wctype breaks tr -CGarrett D'Amore1-1/+2
Reviewed by: loki@animata.net Approved by: richlowe@richlowe.net
2010-09-03142 locale support not POSIX compliantGarrett D'Amore1-27/+56
Portions contributed by J. Schilling <joerg@schily.net> Reviewed by: joerg@schily.net Approved by: gwr@nexenta.com
2010-09-0180 comments format nits in nss_common.cDamian Wojsław1-2/+2
Reviewed by: garrett@nexenta.com Approved by: garrett@nexenta.com
2010-08-307 Need locale databasesGarrett D'Amore4-21/+9
Reviewed by: richlowe@richlowe.net Approved by: richlowe@richlowe.net
2010-08-2159 sparc build brokenGarrett D'Amore2-16/+8
2010-08-1838 need replacement for tr (fix lint)Garrett D'Amore1-0/+4
2010-08-19merge with onnv_147Richard Lowe64-433/+1736
Reviewed by: garrett@nexenta.com Approved by: garrett@nexenta.com
2010-08-1849 open i18n bits should define charset_is_ascii for the rest of libcRichard Lowe11-0/+19
Reviewed by: garrett@nexenta.com Approved by: garrett@nexenta.com --HG-- extra : rebase_source : 6552afbce0a05e927a845d73c32a5008305f3eff
2010-08-1838 need replacement for trGarrett D'Amore7-0/+117
Reviewed by: richlowe@richlowe.net Approved by: garrett@nexenta.com