bsdi.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:2k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * dynloader.c
  4.  *   Dynamic Loader for Postgres for Linux, generated from those for
  5.  *   Ultrix.
  6.  *
  7.  *   You need to install the dld library on your Linux system!
  8.  *
  9.  * Copyright (c) 1994, Regents of the University of California
  10.  *
  11.  *
  12.  * IDENTIFICATION
  13.  *   /usr/local/devel/pglite/cvs/src/backend/port/linux/dynloader.c,v 1.1.1.1 1994/11/07 05:19:37 andrew Exp
  14.  *
  15.  *-------------------------------------------------------------------------
  16.  */
  17. #ifdef PRE_BSDI_2_1
  18. #include <stdio.h>
  19. #include <dld.h>
  20. #include "postgres.h"
  21. #include "dynloader.h"
  22. #include "utils/elog.h"
  23. #include "fmgr.h"
  24. extern char *pg_pathname;
  25. void *
  26. pg_dlopen(char *filename)
  27. {
  28. static int dl_initialized = 0;
  29. /*
  30.  * initializes the dynamic loader with the executable's pathname.
  31.  * (only needs to do this the first time pg_dlopen is called.)
  32.  */
  33. if (!dl_initialized)
  34. {
  35. if (dld_init(dld_find_executable(pg_pathname)))
  36. return NULL;
  37. /*
  38.  * if there are undefined symbols, we want dl to search from the
  39.  * following libraries also.
  40.  */
  41. dl_initialized = 1;
  42. }
  43. /*
  44.  * link the file, then check for undefined symbols!
  45.  */
  46. if (dld_link(filename))
  47. return NULL;
  48. /*
  49.  * If undefined symbols: try to link with the C and math libraries!
  50.  * This could be smarter, if the dynamic linker was able to handle
  51.  * shared libs!
  52.  */
  53. if (dld_undefined_sym_count > 0)
  54. {
  55. if (dld_link("/usr/lib/libc.a"))
  56. {
  57. elog(NOTICE, "dld: Cannot link C library!");
  58. return NULL;
  59. }
  60. if (dld_undefined_sym_count > 0)
  61. {
  62. if (dld_link("/usr/lib/libm.a"))
  63. {
  64. elog(NOTICE, "dld: Cannot link math library!");
  65. return NULL;
  66. }
  67. if (dld_undefined_sym_count > 0)
  68. {
  69. int count = dld_undefined_sym_count;
  70. char   **list = dld_list_undefined_sym();
  71. /* list the undefined symbols, if any */
  72. elog(NOTICE, "dld: Undefined:");
  73. do
  74. {
  75. elog(NOTICE, "  %s", *list);
  76. list++;
  77. count--;
  78. } while (count > 0);
  79. dld_unlink_by_file(filename, 1);
  80. return NULL;
  81. }
  82. }
  83. }
  84. return (void *) strdup(filename);
  85. }
  86. char *
  87. pg_dlerror()
  88. {
  89. return dld_strerror(dld_errno);
  90. }
  91. #endif