src/os/unix/ngx_dlopen.c - nginx source code

Functions defined

Source code


  1. /*
  2. * Copyright (C) Maxim Dounin
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>


  7. #if (NGX_HAVE_DLOPEN)

  8. char *
  9. ngx_dlerror(void)
  10. {
  11.     char  *err;

  12.     err = (char *) dlerror();

  13.     if (err == NULL) {
  14.         return "";
  15.     }

  16.     return err;
  17. }

  18. #endif