gethostname.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 2000 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. #include "config.h"
  4. #include <pthread.h>
  5. #include <sys/utsname.h>
  6. #ifdef HAVE_SYSCALL_UNAME
  7. int gethostname(char *name, int len)
  8. {
  9.   int ret;
  10.   struct utsname buf;
  11.   if ((ret = machdep_sys_chroot(&buf)) < OK)
  12.   {
  13.     SET_ERRNO(-ret);
  14.   }
  15.   else
  16.     strncpy(name,uname->sysname, len);
  17.   return(ret);
  18. }
  19. #endif