CVS log for ports/devel/dyncall/pkg-descr
Up to [FreeBSD] / ports / devel / dyncall
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Jun 1 09:42:18 2008 UTC (3 years, 8 months ago) by olgeni
Branches: MAIN
CVS tags: RELEASE_9_0_0, RELEASE_8_2_0, RELEASE_8_1_0, RELEASE_8_0_0, RELEASE_7_4_0, RELEASE_7_3_0, RELEASE_7_2_0, RELEASE_7_1_0, RELEASE_6_EOL, RELEASE_6_4_0, HEAD
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
Large round of typo fixes in ports/devel (pkg-descr).
Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Apr 14 00:47:00 2008 UTC (3 years, 9 months ago) by clsung
Branches: MAIN
CVS tags: RELEASE_5_EOL
The dyncall library encapsulates architecture-, OS- and compiler-specific function call semantics in a virtual "bind parameters from left to right and then call" interface allowing programmers to call C functions in a completely dynamic manner. In other workds, instead of calling a function directly, the dyncall library provides a mechanism to push the function parameters manually and to issue the call afterwards. This means, that a program can determine at runtime what function to call, and what parameters to pass to it. The library is written in C and assembly and provides a very simple C interface to program against. The library comes in very handy to power flexible message systems, dynamic function call dispatch mechanisms, closure implementations or even to bridge different programming languages. When it comes to language bindings, the dyncall library provides a clean and portable C interface to dynamically issue calls to foreign code using small kernels written in assembly. Instead of providing code for every bridged function call, which unnecessarily results in code bloat, only a couple of instructions are used to invoke every possible call. WWW: http://www.dyncall.org PR: ports/122720 Submitted by: Tassilo Philipp <tphilipp at potion-studios.com>
