| Anonymous | Login | Signup for a new account | 11-10-2008 11:05 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0000978 | [uClibc] Architecture Specific | minor | always | 08-01-06 00:45 | 08-01-06 12:26 | ||||
| Reporter | GJanak | View Status | public | ||||||
| Assigned To | uClibc | ||||||||
| Priority | normal | Resolution | no change required | ||||||
| Status | closed | Product Version | |||||||
| Summary | 0000978: ldso.c: _dl_malloc_addr defined static | ||||||||
| Description |
in ldso.c _dl_malloc_addr and _dl_mmap_zero defined static. in ldso.h as extern. brings an correct gcc error... |
||||||||
| Additional Information |
Index: ldso/ldso/ldso.c =================================================================== --- ldso/ldso/ldso.c (Revision 15763) +++ ldso/ldso/ldso.c (Arbeitskopie) @@ -79,8 +79,8 @@ { } -static unsigned char *_dl_malloc_addr = 0; /* Lets _dl_malloc use the already allocated memory page */ -static unsigned char *_dl_mmap_zero = 0; /* Also used by _dl_malloc */ +unsigned char *_dl_malloc_addr = 0; /* Lets _dl_malloc use the already allocated memory page */ +unsigned char *_dl_mmap_zero = 0; /* Also used by _dl_malloc */ static struct elf_resolve **init_fini_list; static unsigned int nlist; /* # items in init_fini_list */ PS: why are the current snapshot not reflect the current svn :) that's weired :) |
||||||||
| Attached Files | |||||||||
|
|
|||||||||
Notes |
|
|
(0001555) vapier 08-01-06 12:26 |
i dont know what header you're looking at but there are no prototypes for those variables in ldso.h |
| Copyright © 2000 - 2006 Mantis Group |