Skip to content
  1. May 18, 2000
  2. May 17, 2000
  3. May 16, 2000
  4. May 15, 2000
  5. May 14, 2000
  6. May 11, 2000
  7. May 08, 2000
  8. May 04, 2000
  9. May 02, 2000
  10. May 01, 2000
  11. Apr 29, 2000
  12. Apr 27, 2000
  13. Apr 26, 2000
  14. Apr 25, 2000
    • Geoff Thorpe's avatar
      This case in the "dso_unload" handlers should not be reported as an error - · ebbaebf7
      Geoff Thorpe authored
      if a DSO_load(NULL,...) operation fails, it will have to call DSO_free() on
      the DSO structure it created and that will filter through to this "unload"
      call.
      
      If the stack size is "< 1", then the library never actually loaded. To keep
      things clean higher up, I'll treat this as a vacuous case without an error.
      It makes the error stack easier to follow real world cases, and the error
      this ignores was only useful for catching bugs in internal code, not
      mismatched calls from applications (which should be handled in the generic
      DSO layer).
      ebbaebf7
  15. Apr 20, 2000
  16. Apr 19, 2000
    • Geoff Thorpe's avatar
      Thanks to "make update" ... · ffb48878
      Geoff Thorpe authored
      ffb48878
    • Geoff Thorpe's avatar
      This change facilitates name translation for shared libraries. The · b9e63915
      Geoff Thorpe authored
      technique used is far from perfect and alternatives are welcome.
      Basically if the translation flag is set, the string is not too
      long, and there appears to be no path information in the string,
      then it is converted to whatever the standard should be for the
      DSO_METHOD in question, eg;
          blah --> libblah.so   on *nix, and
          blah --> blah.dll     on win32.
      
      This change also introduces the DSO_ctrl() function that is used
      by the name translation stuff.
      b9e63915
  17. Apr 15, 2000
  18. Apr 14, 2000