summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/cris
Commit message (Collapse)AuthorAgeFilesLines
* - fixup asm. No object-code changesBernhard Reutner-Fischer2008-04-244-6/+6
|
* A patch from our Blackfin repository, originally from Jie Zhang. This fixesBernd Schmidt2008-01-171-3/+0
| | | | | | | | | | | | | a problem where the linker was trying to use the wrong symbol name for the init function. Define SYMBOL_PREFIX as _ in Rules.mak for h8300, bfin, i960, microblaze, and v850. Add -D__UCLIBC_UNDERSCORES__ in CFLAGS for targets which define SYMBOL_PREFIX as _. Remove defines and undefs from uClibc_arch_features.h of each target. Add $(SYMBOL_PREFIX) to __uClibc_init when passed by ld option -init.
* change NO_UNDERSCORES to just UNDERSCORES so as to be less confusing when ↵Mike Frysinger2008-01-081-1/+1
| | | | doing double negatives
* Take Mike Frysinger's comments into account -- make certain that userEric Andersen2006-12-081-3/+0
| | | | | applications stop using _syscall#() and use syscall() instead. Cleanup internal handling of syscall includes to use the correct header file.
* bits/kernel_stat.h is for internal uClibc use only, fix a few otherEric Andersen2006-12-061-0/+4
| | | | minor include file issues
* Remove code to define errno in this file. It is definitly not neededPeter Kjellerstedt2006-09-221-9/+0
| | | | | | when building with thread support (which we normally do), and as far as I can tell it should not be needed otherwise either. And as it did not build with the latest binutils and gcc, the choice was easy...
* fix from psm: enable readahead prototypeMike Frysinger2006-08-241-1/+3
|
* use the common huge_val.h version nowMike Frysinger2006-08-241-81/+0
|
* sync with psm: update errno handling to be the same on all archesMike Frysinger2006-08-231-8/+3
|
* sync with upstream via psmMike Frysinger2006-08-231-0/+37
|
* fixes from psm: hide internal brk symbolsMike Frysinger2006-08-233-16/+8
|
* bits/profil-counter.h and bits/atomicity.h are leftovers from the old gprofEric Andersen2006-08-211-26/+0
| | | | | based profiling I nuked ages ago since tools like oprofile are non invasive and work so much better.
* allow arches to easily override asm-line-sep, move cris over to new style, ↵Mike Frysinger2006-06-211-1/+1
| | | | and have hppa use it now
* Sync with glibc.Peter Kjellerstedt2006-05-301-3/+12
|
* sync with glibcMike Frysinger2006-04-211-2/+6
|
* Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵Peter S. Mazinger2006-03-103-5/+0
| | | | most of global data relocations are back
* Added support for the new CRISv32 architecture.Peter Kjellerstedt2006-02-237-36/+156
|
* A little clean up.Peter Kjellerstedt2006-02-231-16/+16
|
* Moved the definition of MMAP2_PAGE_SHIFT from ldso/ldso/cris/dl-syscalls.hPeter Kjellerstedt2006-02-231-0/+6
| | | | to libc/sysdeps/linux/cris/bits/uClibc_page.h where it belongs.
* Cleaned up the assembler code a little.Peter Kjellerstedt2006-02-223-86/+73
|
* No longer needed.Peter Kjellerstedt2006-02-221-73/+0
|
* Added a CRIS specific version of termios.h. It is identical toPeter Kjellerstedt2006-02-221-0/+210
| | | | | libc/sysdeps/linux/common/bits/termios.h with a couple of CRIS specific baud rates added.
* Weaken libc's hidden fork versions, ltp test failedPeter S. Mazinger2006-02-031-1/+1
|
* fix typo s/__initbrk/__init_brk/Peter S. Mazinger2006-02-021-1/+1
|
* I will risk this one: __curbrkPeter S. Mazinger2006-02-013-0/+10
|
* add syscall6Mike Frysinger2006-02-011-0/+8
|
* try at crt1 code by tweaking crt0.c and utilizing the -S output of gccMike Frysinger2006-01-271-0/+58
|
* make sure we include the local sysdep.h headerMike Frysinger2006-01-266-6/+6
|
* remove things that libc-symbols.h already defines for usMike Frysinger2006-01-261-3/+0
|
* cris uses @ for asm line separationsMike Frysinger2006-01-261-0/+3
|
* Ricard Wanderlof writes:Mike Frysinger2006-01-261-33/+41
| | | | | | | | | Here's a patch to avoid a name clash between include/bits/byteswap.h and the kernel include file <linux/byteorder/swab.h> . (Normally both aren't included by the same file, but we've had one case where a conflict occurred at link time, thus necessitating the patch). I've also taken the opportunity to make the general structure and namespace of the file similar to the corresponding file for other archs.
* Allow for targets that don't know about signed zero floats."Jan-Benedict Glaw"2006-01-261-0/+3
|
* fork/vfork weak in libc, strong in libpthreadPeter S. Mazinger2006-01-241-1/+1
|
* Use __typeof for __longjmp, remove alias to longjmp for cris, should be ↵Peter S. Mazinger2006-01-241-1/+0
| | | | covered by common/longjmp.c
* Change to sane defaultsPeter S. Mazinger2006-01-191-5/+10
|
* move a bunch of arch-specific checks out of common files and into an arch ↵Mike Frysinger2006-01-191-0/+34
| | | | specific header file to make porting/updates a lot easier
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-151-1/+1
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-144-5/+24
|
* need features.h for new HIDDEN_JUMPTARGET()Mike Frysinger2006-01-141-0/+1
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-145-21/+13
| | | | missing headers, other jump relocs removed
* Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵Peter S. Mazinger2005-12-161-2/+1
| | | | of __attribute__ ...
* Make clone use internal _exitPeter S. Mazinger2005-12-161-1/+1
|
* Do hidden brk, hide _brk as well for some archs, convert users of brkPeter S. Mazinger2005-12-141-1/+2
|
* Do hidden sbrkPeter S. Mazinger2005-12-131-2/+3
|
* define MREMAP_FIXEDMike Frysinger2005-11-271-0/+1
|
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* rename common Makefile.arch to prevent include funkiness from occuringMike Frysinger2005-11-191-1/+1
|
* update copyright and license, add _BITS_SETJMP_H protection around the file, ↵Mike Frysinger2005-11-161-10/+12
| | | | make sure we are only included by setjmp.h and pthread.h, and fix casting of address/jumpbugf in _JMPBUF_UNWINDS
* unify common code thus making arch-specific Makefiles very simple :)Mike Frysinger2005-11-041-24/+5
|
* Last bits for IMA, now everything can be built w/ DOMULTI=y on gcc-3.4.4 ↵Peter S. Mazinger2005-11-031-2/+2
| | | | with my config (no locale, the rest enabled). Not tested if libc is complete and usable. All the files listed in *_NO_MULTI need love, best would be to replace all multisources w/ single sources.