Sponsored Content
Full Discussion: Library not loaded?
Top Forums UNIX for Advanced & Expert Users Library not loaded? Post 302155264 by olifu02 on Thursday 3rd of January 2008 10:09:39 AM
Old 01-03-2008
No but when i try and make it, it says that permission is denied....any suggestions
 

10 More Discussions You Might Find Interesting

1. Programming

dynamically loaded libraries

how to get the list of all dynamically loaded libraries in memory ?thanks! (3 Replies)
Discussion started by: rainshadow
3 Replies

2. UNIX for Dummies Questions & Answers

Loaded question - anyone up to the challenge?

Hello everyone. I am new to these forums and also new to Unix. And by saying "new to Unix" I mean I have never used it and 10 minutes ago was asked to start learning. So here I am. I was wondering if anyone could help me find out how long it would take to write code in Unix that will do the... (1 Reply)
Discussion started by: idesaj
1 Replies

3. Shell Programming and Scripting

waiting until file loaded

Hello i have DB file load with this command ../SS-Tools/SSdbload -r 10 -il /export/specbackup_db/$b y i should wait until the DB load completed then run the next command $SPECROOT/bin/launchinstdbapp `/usr/bin/hostname` SS n VNM.OUT how this can be done with shell scripting NB: i... (1 Reply)
Discussion started by: mogabr
1 Replies

4. UNIX for Dummies Questions & Answers

Which sections of a shared library should be loaded in the physical memory?

Each shared library may contain sections with allocatable flag as below: ... .hash .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_d .rel.dyn .rel.plt .plt ... My questions is that: among above sections, which of them should be loaded in the physical memory by run-time linker... (3 Replies)
Discussion started by: Dongping84
3 Replies

5. SCO

module loaded during the start up

hi Howto find out which driver (module) were loaded during the startup of SCO 5.0.6? (5 Replies)
Discussion started by: ccc
5 Replies

6. AIX

Loaded Shared Libraries

Hi, I have a problem about loaded shared libraries. I'm issuing ‘procldd' for a process and AIX shows me the loaded shared libraries. I'm collecting these libraries and counting their size. They were 350MB. After this, I'm issuing ‘ps vx' and I'm seeing that the process takes 130MB from AIX's... (1 Reply)
Discussion started by: jhatzics
1 Replies

7. Solaris

file just loaded does not appear to be executable

Hi When i m trying the boot the system with Primary HDD (c1t0d0s0) -- its solaris 10 I m getting an error "file just loaded does not appear to be executable".....So will anyone share the steps to recover from this stage I also tried to build the corrupted superblock from below command but... (0 Replies)
Discussion started by: taruntan
0 Replies

8. UNIX for Dummies Questions & Answers

Macintosh build error: dyld: Library not loaded: /usr/local/lib/libpcre.0.dylib

Hi all, my first post here. I'm trying to load hypermail on my Mac (Tiger 10.4.11). It seemed to install just fine, but when I run the test build I get this error: dyld: Library not loaded: /usr/local/lib/libpcre.0.dylib Referenced from: /Users/sstark/Desktop/hypermail/tests/../src/hypermail... (4 Replies)
Discussion started by: slugger415
4 Replies

9. BSD

BSD: Getting the WM loaded

Heyas Since freebsd has set TERM to xterm when in terminal mode, i'm very curious what its value will be in GUI mode - seems its xterm (in x11/twm) as well.. how smart :eek: :( So i've installed: awesome and xorg, but when calling awesome, it talks something about invalid display. So i've... (1 Reply)
Discussion started by: sea
1 Replies

10. UNIX for Advanced & Expert Users

When does Autosys Profile loaded?

hi, would like to know if anyone knows or could verify and give me an answer on when autosys does actually load the profile whether in Activated state or Running state. Scenerio am trying to look for is Lets say i have a profile variable DATE=Mar052015 Start jobA --> JobB depends on A -->... (0 Replies)
Discussion started by: veshwar
0 Replies
DYLD(3) 						     Library Functions Manual							   DYLD(3)

NAME
dyld - low level programatic interface to the dynamic link editor SYNOPSIS
#include <mach-o/dyld.h> unsigned long _dyld_present(void); unsigned long _dyld_image_count(void); struct mach_header *_dyld_get_image_header( unsigned long image_index); unsigned long _dyld_get_image_vmaddr_slide( unsigned long image_index); char *_dyld_get_image_name( unsigned long image_index); void _dyld_lookup_and_bind( char *symbol_name, unsigned long *address, void **module); void _dyld_lookup_and_bind_with_hint( char *symbol_name, const char *library_name_hint, unsigned long *address, void **module); void _dyld_lookup_and_bind_fully( char *symbol_name, unsigned long *address, void **module); enum bool _dyld_bind_fully_image_containing_address( unsigned long *address); enum bool _dyld_image_containing_address( unsigned long address); enum bool _dyld_get_image_header_containing_address( unsigned long address); enum bool _dyld_launched_prebound(void); enum bool _dyld_all_twolevel_modules_prebound(void); int _dyld_func_lookup( char *dyld_func_name, unsigned long *address); extern void _dyld_bind_objc_module( void *objc_module); extern void _dyld_get_objc_module_sect_for_module( NSModule module, void **objc_module, unsigned long *size); extern void _dyld_lookup_and_bind_objc( const char *symbol_name, unsigned long *address, void **module); extern void _dyld_moninit( void (*monaddition)(char *lowpc, char *highpc)); extern void _dyld_register_func_for_add_image( void (*func)(struct mach_header *mh, unsigned long vmaddr_slide)); extern void _dyld_register_func_for_remove_image( void (*func)(struct mach_header *mh, unsigned long vmaddr_slide)); extern void _dyld_register_func_for_link_module( void (*func)(NSModule module)); DESCRIPTION
These routines are the low level programatic interface to the dynamic link editor. _dyld_present returns non-zero if the dynamic linker is being used in the program and zero otherwise. If this returns zero this rest of these functions should not be called and most likely crash the program if called. _dyld_image_count returns the current number of images mapped in by the dynamic link editor. _dyld_get_image_header returns the mach header of the image indexed by image_index. If image_index is out of range NULL is returned. _dyld_get_image_vmaddr_slide returns the virtural memory address slide amount of the image indexed by image_index. If image_index is out of range zero is returned. _dyld_get_image_name returns the name of the image indexed by image_index. If image_index is out of range NULL is returned. _dyld_lookup_and_bind looks up the symbol_name and binds it into the program. It indirectly returns the address and and a pointer to the module that defined the symbol. _dyld_lookup_and_bind_with_hint is the same as _dyld_lookup_and_bind but the library_name_hint parameter provides a hint as to where to start the lookup in a prebound program. The library_name_hint parameter is matched up with the actual library install names with strstr(3). _dyld_lookup_and_bind_fully looks up the symbol_name and binds it and all of its references into the program. It indirectly returns the address and and a pointer to the module that defined the symbol. _dyld_bind_fully_image_containing_address fully binds the image containing the specified address. It returns TRUE if the address is con- tained in a loaded image and FALSE otherwise. _dyld_image_containing_address It returns TRUE if the address is contained in an image dyld loaded and FALSE otherwise. _dyld_get_image_header_containing_address It returns a pointer to the mach header of the image if the address is contained in an image dyld loaded and NULL otherwise. _dyld_launched_prebound returns TRUE if the program was launched using the prebound state and FALSE otherwise. returns TRUE if all the libraries currently in use by the program are being used as two-level namespace libraries, are prebound and have all their modules bound. Otherwise it returns FALSE. _dyld_func_lookup is passed a name, dyld_func_name, of a dynamic link editor function and returns the address of the function indirectly. It returns non-zero if the function is found and zero otherwise. _dyld_bind_objc_module is passed a pointer to something in an (__OBJC,__module) section and causes the module that is associated with that address to be bound. _dyld_get_objc_module_sect_for_module is passed a module and sets a pointer to the (__OBJC,__module) section and its size for the specified module. _dyld_lookup_and_bind_objc() is the same as _dyld_lookup_and_bind() but does not update the symbol pointers if the symbol is in a bound module. The reason for this is that an objc symbol like .objc_class_name_Object is never used by a symbol pointer. Since this is done a lot by the objc runtime and updating symbol pointers is not cheep it should not be done. _dyld_moninit is called from the profiling runtime routine moninit(3) to cause the dyld loaded code to be profiled. It is passed a pointer to the the profiling runtime routine monaddtion(3) to be called after an image had been mapped in. _dyld_register_func_for_add_image registers the specified function to be called when a new image is added (a bundle or a dynamic shared library) to the program. When this function is first registered it is called for once for each image that is currently part of the pro- gram. _dyld_register_func_for_remove_image registers the specified function to be called when an image is removed (a bundle or a dynamic shared library) from the program. _dyld_register_func_for_link_module registers the specified function to be called when a module is bound into the program. When this function is first registered it is called for once for each module that is currently bound into the program. Apple Computer, Inc. November 14, 2002 DYLD(3)
All times are GMT -4. The time now is 11:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy