Difference between revisions of "Dynamic linking"

From ScarletDME
Jump to navigation Jump to search
(New page: == ccall.zip == This is a VERY comprehensive set of examples by Doug Dumitu related to calling functions in glibc. If the links dont work then search in http://groups.google.co.uk/group/...)
 
Line 5: Line 5:
 
If the links dont work then search in http://groups.google.co.uk/group/OpenQM for "ccall.zip" or "Creating a VFS interface to D3" or 'The CCALL layer is a low-level "stack" processors.' and look for Dougs post on the 3 Sep 2007. The ccall.zip file is attached at the end.
 
If the links dont work then search in http://groups.google.co.uk/group/OpenQM for "ccall.zip" or "Creating a VFS interface to D3" or 'The CCALL layer is a low-level "stack" processors.' and look for Dougs post on the 3 Sep 2007. The ccall.zip file is attached at the end.
  
[http://groups.google.co.uk/group/OpenQM/attach/b8a1dfce36f27f4c/ccall.zip?part=2 ccall.zip] Look for Dougs post in this discussion.
+
File: [http://groups.google.co.uk/group/OpenQM/attach/b8a1dfce36f27f4c/ccall.zip?part=2 ccall.zip]
  
[http://groups.google.com/group/OpenQM/browse_thread/thread/32e385ff877d7a69/34dccbc201e6f3ea?lnk=gst&q=ccall.zip# Creating a VFS interface to D3]
+
Intro: [http://groups.google.com/group/OpenQM/browse_thread/thread/32e385ff877d7a69/34dccbc201e6f3ea?lnk=gst&q=ccall.zip# Creating a VFS interface to D3] Look for Dougs post in this discussion.
  
"The CCALL layer is a low-level "stack" processors.  It allows you to build the native C calling stack and then "call" a function.  It assumes that you are very careful and understand calling conventions."
+
"The CCALL layer is a low-level "stack" processor.  It allows you to build the native C calling stack and then "call" a function.  It assumes that you are very careful and understand calling conventions."

Revision as of 01:06, 19 December 2008

ccall.zip

This is a VERY comprehensive set of examples by Doug Dumitu related to calling functions in glibc.

If the links dont work then search in http://groups.google.co.uk/group/OpenQM for "ccall.zip" or "Creating a VFS interface to D3" or 'The CCALL layer is a low-level "stack" processors.' and look for Dougs post on the 3 Sep 2007. The ccall.zip file is attached at the end.

File: ccall.zip

Intro: Creating a VFS interface to D3 Look for Dougs post in this discussion.

"The CCALL layer is a low-level "stack" processor. It allows you to build the native C calling stack and then "call" a function. It assumes that you are very careful and understand calling conventions."