This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RPC: unable to register


Hi,

I tried to get a small RPC example running and failed. I'm using
Windows XP with all updates except SP2. I have upgraded to the latest
Cygwin release today. "cygserv", "sshd", and "portmap" are running as
Windows services. I've started "portmap" with the commands
cygrunsrv -I "Cygwin portmap" -p /usr/sbin/portmap -a -F
cygrunsrv -S "Cygwin portmap"
"portmap" seems to work properly for "rpcinfo".

eiger Admin 10 rpcinfo -p localhost
   program vers proto   port
    100000    2   tcp    111
    100000    2   udp    111

When I start my example program "rpctst_server", I get the following
output:

Cannot register service: RPC: Unable to send; errno = Cannot assign
  requested address
unable to register (RPCtest, RPCtestVers2, udp).

If I start my server on a Solaris machine and the client on Cygwin,
the client behaves as expected. Searching in the web showed that
some other persons had had the same problem, but I found only a
description of the problem and no solution. Perhaps there is no
solution to the problem. Next I stopped the Windows service
"portmap" and started it manually with "portmap -d -F". When I
started the server once more I got the same result. "portmap"
didn't display anything and "/var/log/Cygwin portmap.log" and
"/var/log/portmap.log" are empty. At last I tried the same things
without the firewall ZoneAlarm running. The behaviour was the same.

Has anybody an idea what I have to do to get my program running?
Have I missed something essential?

I append my programs and a strace output starting the server.

I would be grateful for any comments solving the problem. Thank you
very much for your help in advance.

Siegmar
# Makefile to build the RPC-programs for the lecture "operating systems".
# This file can only be used with "GNU make", because it contains
# conditional statements. If you don't have "GNU make" add a comment
# char in front of all unnecessary lines.
#
# The environment variables SYSTEM_ENV (e.g. SunOS, Linux, IRIX, Cygwin)
# and MACHINE_ENV (e.g. sparc, x86, mips) must be defined!
#
# Create simple RPC program using UNIX development tools. The server
# part must be implemted in file "rpctst_server.c" and the client part
# in file "rpctst_client.c". You can generate all (stub) files for a
# new project with "rpcgen -aC <project>.x" (not possible with Cygwin).
# Don't execute "rpcgen -aC rpctst.x" because it would overwrite the
# implementations of my server and client.
#
# Usage:
#   (g)make
#   (g)make clean
#   (g)make clean_all
#
#
# File: GNUMakefile			Author: S. Gross
# Date: 05.10.2004
#

SYTEM_ENV   = Cygwin
MACHINE_ENV = x86

# common definitions
#
# choose cc or gcc
#
CC	= gcc
RPCGEN	= rpcgen

# Run server as foreground process
#CFLAGS	= -DRPC_SVC_FG

PROJECT	= rpctst
# Interface definition for RPC procedures
IDL	= $(PROJECT).x
# Client/server filenames (without filename extension ".c")
SERVER	= $(PROJECT)_server
CLIENT	= $(PROJECT)_client


# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# !!!                        Don't change                             !!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

# This part needs only a change, if you change the number of programs
# or you want to change "CFLAGS" (e.g., to support debugging (-g)
# and/or profiling (-p for "prof" or -pg for "gprof") using "gcc")
# or "LIBS" or ...

ifeq ($(SYSTEM_ENV), Linux)		# only gcc available
  CC = gcc
endif

ifeq ($(SYSTEM_ENV), Cygwin)		# only gcc available
  CC = gcc
endif

# Cygwin header files break with "-std=c99"
ifeq ($(SYSTEM_ENV), Cygwin)
  C_STD = -std=gnu99
else
  C_STD = -std=c99
endif

ifeq ($(CC), gcc)
  CFLAGS += -Wall -Wstrict-prototypes -Wmissing-prototypes \
	    $(C_STD) -pedantic -D$(SYSTEM_ENV) -D$(MACHINE_ENV)
else
  ifeq ($(SYSTEM_ENV), SunOS)
    CFLAGS += -Xc -fd -v -D$(SYSTEM_ENV) -D$(MACHINE_ENV)
  endif
endif

ifeq ($(SYSTEM_ENV), SunOS)
  LIBS = -lnsl
endif

ifeq ($(SYSTEM_ENV), Linux)
  LIBS = -lnsl
endif

ifeq ($(SYSTEM_ENV), Cygwin)
  LIBS = -lrpc
endif

ifeq ($(SYSTEM_ENV), Cygwin)
  RPCGENFLAGS = 
else
  RPCGENFLAGS = -C
endif

ifeq ($(SYSTEM_ENV), Cygwin)
  TARGET1  = $(SERVER).exe
  TARGET2  = $(CLIENT).exe
else
  TARGET1  = $(SERVER)
  TARGET2  = $(CLIENT)
endif


all:	$(TARGET1) $(TARGET2)

$(PROJECT).h $(PROJECT)_svc.c $(PROJECT)_clnt.c:	$(IDL)
	$(RPCGEN) $(RPCGENFLAGS) $(IDL)

$(TARGET1):	$(SERVER).c $(PROJECT).h
	$(CC) $(CFLAGS) -o $(TARGET1) $(SERVER).c $(PROJECT)_svc.c $(LIBS)

$(TARGET2):	$(CLIENT).c $(PROJECT).h
	$(CC) $(CFLAGS) -o $(TARGET2) $(CLIENT).c $(PROJECT)_clnt.c $(LIBS)

clean:
	rm -f $(PROJECT).h $(PROJECT)_clnt.c $(PROJECT)_svc.c *.o

clean_all:
	rm -f $(PROJECT).h $(PROJECT)_clnt.c $(PROJECT)_svc.c *.o
	rm -f $(TARGET1) $(TARGET2)
/* Define the interface for RPC procedures. This file must
 * be compiled with "rpcgen".
 *
 * File: rpctst.x			Author: S. Gross
 * Date: 11.09.2001
 *
 */

program RPCtest
{
  version RPCtestVers2
  {
    string RetString (void)	 = 1;
    long   RetSquare (long)	 = 2;
    void   ShutDownServer (void) = 3;
  } = 2;

  version RPCtestVers1
  {
    string RetString (void) = 1;
  } = 1;
} = 0x20000000;

const LatestRPCtestVers = 2;

/* RPC server program for UNIX systems.
 *
 * The program supports version 1 and 2 of the server.
 * Version 1 consists of the function "RetString" and version 2
 * of the functions "RetString", "RetSquare", and "ShutDownServer".
 *
 * "rpcgen" changes function names, return types, and types of
 * function parameters. Furthermore it adds a new function parameter
 * to all functions (compare rpctst.x and rpctst.h). It generates
 * one set of function prototypes for the client and another one for
 * the server ("_svc" appended to the function name. NOT IN CYGWIN !).
 * The implementation must take care of these changes.
 *
 * Start "rpctst_server" before you start "rpctst_client. Start the
 * server and the client in different windows.
 *
 * SunOS (Solaris) starts the server automatically as background
 * procecss, so that you wouldn't see any output from the server.
 * If you want to test the server you can uncomment RPC_SVC_FG in
 * GNUmakefile.
 *
 *
 *
 * File: rpctst_server.c       		Author: S. Gross
 * Date: 05.10.2004
 *
 */

#include <stdio.h>
#include <string.h>
#include <rpc/rpc.h>
#include <sys/utsname.h>
#include <signal.h>
#include "rpctst.h"

#define	BUF_SIZE	80

#ifdef Cygwin
  #define retstring_1_svc	retstring_1
  #define retstring_2_svc	retstring_2
  #define retsquare_2_svc	retsquare_2
  #define shutdownserver_2_svc	shutdownserver_2
#endif

char **retstring_1_svc (void *argp, struct svc_req *rqstp)
{
  static char	 buffer [BUF_SIZE];
  static char	 *bufPtr;
  struct utsname sys_info;		/* system information		*/

  printf ("RPC server version 1: RetString() called\n");
  uname (&sys_info);
  strcpy (buffer, "Greetings from ");
  strncpy (buffer + strlen (buffer), sys_info.nodename,
	   BUF_SIZE - strlen (buffer));
   strncpy (buffer + strlen (buffer), " (Version 1)",
	    BUF_SIZE - strlen (buffer));
  bufPtr = buffer;
  return &bufPtr;
}

int rpctest_1_freeresult (SVCXPRT *transp, xdrproc_t xdr_result,
			 caddr_t result)
{
  return 0;
}

char **retstring_2_svc (void *argp, struct svc_req *rqstp)
{
  static char buffer [BUF_SIZE];
  static char *bufPtr;
  struct utsname sys_info;		/* system information		*/

  printf ("RPC server version 2: RetString() called\n");
  uname (&sys_info);
  strcpy (buffer, "Greetings from ");
  strncpy (buffer + strlen (buffer), sys_info.nodename,
	   BUF_SIZE - strlen (buffer));
   strncpy (buffer + strlen (buffer), " (Version 2)",
	    BUF_SIZE - strlen (buffer));
  bufPtr = buffer;
  return &bufPtr;
}

long *retsquare_2_svc (long *val, struct svc_req *rqstp)
{
  static long square;

  printf ("RPC server version 2: RetSquare() called\n");
  square = *val * *val;
  return &square;
}

void *shutdownserver_2_svc (void *argp, struct svc_req *rqstp)
{
  printf ("RPC server version 2: ShutDownServer() called\n");
  raise (SIGHUP);
  return (void *) NULL;
}

int rpctest_2_freeresult (SVCXPRT *transp, xdrproc_t xdr_result,
			  caddr_t result)
{
  return 0;
}
/* RPC client program for UNIX systems.
 *
 * "rpcgen" changes function names, return types, and types of
 * function parameters. Furthermore it adds a new function parameter
 * to all functions (compare rpctst.x and rpctst.h). It generates
 * one set of function prototypes for the client and another one for
 * the server ("_svc" appended to the function name).
 * The implementation must take care of these changes.
 *
 * Start "rpctst_server" before you start "rpctst_client.
 *
 * Usage: rpctst_client <hostname of server process>
 *
 *
 * File: rpctst_client.c       		Author: S. Gross
 * Date: 05.10.2004
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <rpc/rpc.h>
#include "rpctst.h"

#define	PROT_TYP	"tcp"

void rpctest_1 (char *host);
void rpctest_2 (char *host);


int main(int argc, char *argv [])
{
  char *host;

  if (argc != 2)
  {
    printf ("Usage: %s <hostname of server process>\n", argv [0]);
    exit (-1);
  };
  host = argv [1];
  printf ("\n****** Testing all functions of version 1 ******\n");
  rpctest_1 (host);
  printf ("\n\n****** Testing all functions of version 2 ******\n");
  rpctest_2 (host);
  return 0;
}


/* Test all functions of server version 1
 *
 * Input parameters:	host	hostname of the server machine
 *
 */
void rpctest_1 (char *host)
{
  CLIENT *clnt;
  char	 **msg;

  clnt = clnt_create (host, RPCtest, RPCtestVers1, PROT_TYP);
  if (clnt == (CLIENT *) NULL)
  {
    clnt_pcreateerror ((const char *) strcat ("clnt_create() "
		       "failed for ", host));
    exit (-1);
  };

  printf ("\nRPC client: call remote function \"RetString\"\n");
  msg = retstring_1 ((void **) NULL, clnt);
  if (msg == (char **) NULL)
  {
    clnt_perror (clnt, (const char *) strcat ("RetString() "
		 "failed for ", host));
    exit (-1);
  };
  printf ("Received string: %s\n", *msg);

  clnt_destroy (clnt);
}


/* Test all functions of server version 2
 *
 * Input parameters:	host	hostname of the server machine
 *
 */
void rpctest_2 (char *host)
{
  CLIENT *clnt;
  char	 **msg;
  long	 *square, value;

  clnt = clnt_create (host, RPCtest, RPCtestVers2, PROT_TYP);
  if (clnt == (CLIENT *) NULL)
  {
    clnt_pcreateerror ((const char *) strcat ("clnt_create() "
		       "failed for ", host));
    exit (-1);
  };

  printf ("\nRPC client: call remote function \"RetString\"\n");
  msg = retstring_2 ((void **) NULL, clnt);
  if (msg == (char **) NULL)
  {
    clnt_perror (clnt, (const char *) strcat ("RetString() "
		 "failed for ", host));
    exit (-1);
  };
  printf ("Received string: %s\n", *msg);

  printf ("\nRPC client: call remote function \"RetSquare\"\n");
  value = 5L;
  square = retsquare_2 (&value, clnt);
  if (square == (long *) NULL)
  {
    clnt_perror (clnt, (const char *) strcat ("RetSquare() "
		 "failed for ", host));
    exit (-1);
  };
  printf ("%ld * %ld = %ld\n", value, value, *square);

  printf ("\nRPC client: call remote function \"ShutDownServer\"\n");
  shutdownserver_2 ((void *) NULL, clnt);

  clnt_destroy (clnt);
}
**********************************************
Program name: C:\cygwin\tmp\z\rpctst_server.exe (1828)
App version:  1005.11, api: 0.116
DLL version:  1005.11, api: 0.116
DLL build:    2004-09-04 23:17
OS version:   Windows NT-5.1
Heap size:    402653184
Date/Time:    2004-10-05 11:16:50
**********************************************
  336     609 [main] rpctst_server 1828 environ_init: 0xA050008: !::=::\
   34     643 [main] rpctst_server 1828 environ_init: 0xA050250: !C:=C:\cygwin\bin
   31     674 [main] rpctst_server 1828 environ_init: 0xA050268: ALLUSERSPROFILE=C:\Dokumente und Einstellungen\All Users
   32     706 [main] rpctst_server 1828 environ_init: 0xA0502A8: APPDATA=C:\Dokumente und Einstellungen\Admin\Anwendungsdaten
   32     738 [main] rpctst_server 1828 environ_init: 0xA0502F0: CLASSPATH=.:C:\PROGRA~1\JMF21~1.1E\lib\sound.jar;C:\PROGRA~1\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~1\JMF21~1.1E\lib;C:\WINDOWS\java\classes;.
   33     771 [main] rpctst_server 1828 environ_init: 0xA050380: COMMONPROGRAMFILES=C:\Programme\Gemeinsame Dateien
   31     802 [main] rpctst_server 1828 environ_init: 0xA0503B8: COMPUTERNAME=EIGER
   30     832 [main] rpctst_server 1828 environ_init: 0xA0503D0: COMSPEC=C:\WINDOWS\system32\cmd.exe
   31     863 [main] rpctst_server 1828 environ_init: 0xA0503F8: CPLUS_INCLUDE_PATH=/home/Admin/Cygwin/x86/include
   31     894 [main] rpctst_server 1828 environ_init: 0xA050430: CSHEDIT=emacs
   34     928 [main] rpctst_server 1828 parse_options: ntsec (called func)
   32     960 [main] rpctst_server 1828 parse_options: tty 1001
   31     991 [main] rpctst_server 1828 parse_options: server 1
   30    1021 [main] rpctst_server 1828 parse_options: returning
   16    1037 [main] rpctst_server 1828 environ_init: 0xA050448: CYGWIN=ntsec tty server
   31    1068 [main] rpctst_server 1828 environ_init: 0xA050498: C_INCLUDE_PATH=/home/Admin/Cygwin/x86/include
   31    1099 [main] rpctst_server 1828 environ_init: 0xA0504D0: DIRPREFIX_LOCAL=/home/Admin/Cygwin/x86
   30    1129 [main] rpctst_server 1828 environ_init: 0xA050500: DIRPREFIX_PROG=/usr/local
   31    1160 [main] rpctst_server 1828 environ_init: 0xA050520: DISPLAY=eiger:0.0
   30    1190 [main] rpctst_server 1828 environ_init: 0xA050538: EDITOR=xemacs
   30    1220 [main] rpctst_server 1828 environ_init: 0xA050550: GROUP=Kein
   31    1251 [main] rpctst_server 1828 environ_init: 0xA050560: HELPPATH=/home/Admin/Cygwin/x86/help
   31    1282 [main] rpctst_server 1828 getwinenv: can't set native for HOME= since no environ yet
   38    1320 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\home\Admin, no-keep-rel, no-add-slash)
   25    1345 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\home\Admin = normalize_win32_path (C:\cygwin\home\Admin)
   33    1378 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /home/Admin = conv_to_posix_path (C:\cygwin\home\Admin)
   47    1425 [main] rpctst_server 1828 win_env::add_cache: posix /home/Admin
   16    1441 [main] rpctst_server 1828 win_env::add_cache: native HOME=C:\cygwin\home\Admin
   17    1458 [main] rpctst_server 1828 posify: env var converted to HOME=/home/Admin
   68    1526 [main] rpctst_server 1828 environ_init: 0xA0505B0: HOME=/home/Admin
   32    1558 [main] rpctst_server 1828 environ_init: 0xA0506F0: HOMEDRIVE=C:
   31    1589 [main] rpctst_server 1828 environ_init: 0xA050708: HOMEPATH=\Dokumente und Einstellungen\Admin
   31    1620 [main] rpctst_server 1828 environ_init: 0xA050738: HOST=eiger
   30    1650 [main] rpctst_server 1828 environ_init: 0xA050748: HOSTNAME=eiger
   30    1680 [main] rpctst_server 1828 environ_init: 0xA050760: HOSTTYPE=i386
   31    1711 [main] rpctst_server 1828 environ_init: 0xA050778: HOST_NAME=eiger
   31    1742 [main] rpctst_server 1828 environ_init: 0xA050790: INCLUDE=c:\programme\devstudio\vc\include;c:\programme\devstudio\vc\atl\include;c:\programme\devstudio\vc\mfc\include;c:\Programme\MPICH\SDK\include
   32    1774 [main] rpctst_server 1828 environ_init: 0xA050830: INFOPATH=/home/Admin/Cygwin/x86/info
   70    1844 [main] rpctst_server 1828 getwinenv: can't set native for LD_LIBRARY_PATH= since no environ yet
   33    1877 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\X11R6\lib:\usr\local\lib:\home\Admin\Cygwin\x86\lib, no-keep-rel, no-add-slash)
   19    1896 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\X11R6\lib:\usr\local\lib:\home\Admin\Cygwin\x86\lib = normalize_win32_path (C:\cygwin\usr\X11R6\lib:\usr\local\lib:\home\Admin\Cygwin\x86\lib)
   20    1916 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/X11R6/lib:/usr/local/lib:/home/Admin/Cygwin/x86/lib = conv_to_posix_path (C:\cygwin\usr\X11R6\lib:\usr\local\lib:\home\Admin\Cygwin\x86\lib)
   47    1963 [main] rpctst_server 1828 win_env::add_cache: posix /usr/X11R6/lib:/usr/local/lib:/home/Admin/Cygwin/x86/lib
   17    1980 [main] rpctst_server 1828 win_env::add_cache: native LD_LIBRARY_PATH=C:\cygwin\usr\X11R6\lib:\usr\local\lib:\home\Admin\Cygwin\x86\lib
   18    1998 [main] rpctst_server 1828 posify: env var converted to LD_LIBRARY_PATH=/usr/X11R6/lib:/usr/local/lib:/home/Admin/Cygwin/x86/lib
   31    2029 [main] rpctst_server 1828 environ_init: 0xA0508B8: LD_LIBRARY_PATH=/usr/X11R6/lib:/usr/local/lib:/home/Admin/Cygwin/x86/lib
   32    2061 [main] rpctst_server 1828 environ_init: 0xA050A70: LIB=c:\programme\devstudio\vc\lib;c:\programme\devstudio\vc\mfc\lib;c:\Programme\MPICH\SDK\lib
   32    2093 [main] rpctst_server 1828 environ_init: 0xA050590: LOCAL_ENV=
   30    2123 [main] rpctst_server 1828 environ_init: 0xA050860: LOGNAME=Admin
   31    2154 [main] rpctst_server 1828 environ_init: 0xA050878: LOGONSERVER=\\EIGER
   31    2185 [main] rpctst_server 1828 environ_init: 0xA050AD8: L_DIRS=-L/usr/X11R6/lib -L/usr/local/lib -L/home/Admin/Cygwin/x86/lib
   31    2216 [main] rpctst_server 1828 environ_init: 0xA050890: MACHINE_ENV=x86
   30    2246 [main] rpctst_server 1828 environ_init: 0xA050B28: MACHTYPE=i386
   31    2277 [main] rpctst_server 1828 environ_init: 0xA050B40: MAKE_MODE=unix
   30    2307 [main] rpctst_server 1828 environ_init: 0xA050B58: MANPATH=:/usr/ssl/man:/usr/X11R6/man:/home/Admin/Cygwin/x86/man:/usr/ssl/man:/usr/X11R6/man
   32    2339 [main] rpctst_server 1828 environ_init: 0xA050BB8: MSDEVDIR=C:\Programme\DevStudio\SharedIDE
   31    2370 [main] rpctst_server 1828 environ_init: 0xA050BE8: MSVCDIR=C:\Programme\DevStudio\VC
   36    2406 [main] rpctst_server 1828 environ_init: 0xA050C10: NUMBER_OF_PROCESSORS=1
   31    2437 [main] rpctst_server 1828 environ_init: 0xA050C30: OS=Windows_NT
   30    2467 [main] rpctst_server 1828 environ_init: 0xA050C48: OSTYPE=posix
   30    2497 [main] rpctst_server 1828 environ_init: 0xA0505A0: PAGER=more
   33    2530 [main] rpctst_server 1828 getwinenv: can't set native for PATH= since no environ yet
   19    2549 [main] rpctst_server 1828 normalize_posix_path: src .
   21    2570 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\tmp\z, no-keep-rel, no-add-slash)
   19    2589 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\tmp\z = normalize_win32_path (C:\cygwin\tmp\z)
   18    2607 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /tmp/z = conv_to_posix_path (C:\cygwin\tmp\z)
   19    2626 [main] rpctst_server 1828 cwdstuff::get: posix /tmp/z
   17    2643 [main] rpctst_server 1828 cwdstuff::get: (/tmp/z) = cwdstuff::get (0x22ECF0, 260, 1, 0), errno 0
   19    2662 [main] rpctst_server 1828 normalize_posix_path: /tmp/z/ = normalize_posix_path (.)
   17    2679 [main] rpctst_server 1828 mount_info::conv_to_win32_path: conv_to_win32_path (/tmp/z)
   25    2704 [main] rpctst_server 1828 set_flags: flags: binary (0x2)
   18    2722 [main] rpctst_server 1828 mount_info::conv_to_win32_path: src_path /tmp/z, dst C:\cygwin\tmp\z, flags 0xA, rc 0
   56    2778 [main] rpctst_server 1828 symlink_info::check: not a symlink
   20    2798 [main] rpctst_server 1828 symlink_info::check: 0 = symlink.check (C:\cygwin\tmp\z, 0x22E9B0) (0xA)
   82    2880 [main] rpctst_server 1828 path_conv::check: this->path(C:\cygwin\tmp\z), has_acls(1)
   49    2929 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   18    2947 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   17    2964 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   18    2982 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\X11R6\bin, keep-rel, no-add-slash)
   18    3000 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\X11R6\bin = normalize_win32_path (C:\cygwin\usr\X11R6\bin)
   18    3018 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/X11R6/bin = conv_to_posix_path (C:\cygwin\usr\X11R6\bin)
   18    3036 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\autotool\stable\bin, keep-rel, no-add-slash)
   18    3054 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\autotool\stable\bin = normalize_win32_path (C:\cygwin\usr\autotool\stable\bin)
   19    3073 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/autotool/stable/bin = conv_to_posix_path (C:\cygwin\usr\autotool\stable\bin)
   18    3091 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\sbin, keep-rel, no-add-slash)
   17    3108 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\sbin = normalize_win32_path (C:\cygwin\sbin)
   18    3126 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /sbin = conv_to_posix_path (C:\cygwin\sbin)
   17    3143 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\sbin, keep-rel, no-add-slash)
   18    3161 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\sbin = normalize_win32_path (C:\cygwin\usr\sbin)
   17    3178 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/sbin = conv_to_posix_path (C:\cygwin\usr\sbin)
   18    3196 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\X11R6\sbin\fvwm\2.4.7, keep-rel, no-add-slash)
   18    3214 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\X11R6\sbin\fvwm\2.4.7 = normalize_win32_path (C:\cygwin\usr\X11R6\sbin\fvwm\2.4.7)
   18    3232 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/X11R6/sbin/fvwm/2.4.7 = conv_to_posix_path (C:\cygwin\usr\X11R6\sbin\fvwm\2.4.7)
   18    3250 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\local\bin, keep-rel, no-add-slash)
   18    3268 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\local\bin = normalize_win32_path (C:\cygwin\usr\local\bin)
   18    3286 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/local/bin = conv_to_posix_path (C:\cygwin\usr\local\bin)
   18    3304 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\local\bin, keep-rel, no-add-slash)
   18    3322 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\local\bin = normalize_win32_path (C:\cygwin\usr\local\bin)
   18    3340 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/local/bin = conv_to_posix_path (C:\cygwin\usr\local\bin)
   17    3357 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   18    3375 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   23    3398 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   18    3416 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   17    3433 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   17    3450 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   21    3471 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\usr\X11R6\bin, keep-rel, no-add-slash)
   19    3490 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\usr\X11R6\bin = normalize_win32_path (C:\cygwin\usr\X11R6\bin)
   18    3508 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/X11R6/bin = conv_to_posix_path (C:\cygwin\usr\X11R6\bin)
   18    3526 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\WINDOWS\system32, keep-rel, no-add-slash)
   17    3543 [main] rpctst_server 1828 normalize_win32_path: c:\WINDOWS\system32 = normalize_win32_path (c:\WINDOWS\system32)
   18    3561 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS/system32 = conv_to_posix_path (c:\WINDOWS\system32)
   18    3579 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\WINDOWS, keep-rel, no-add-slash)
   17    3596 [main] rpctst_server 1828 normalize_win32_path: c:\WINDOWS = normalize_win32_path (c:\WINDOWS)
   18    3614 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS = conv_to_posix_path (c:\WINDOWS)
   17    3631 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\WINDOWS\System32\Wbem, keep-rel, no-add-slash)
   18    3649 [main] rpctst_server 1828 normalize_win32_path: c:\WINDOWS\System32\Wbem = normalize_win32_path (c:\WINDOWS\System32\Wbem)
   18    3667 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/WINDOWS/System32/Wbem = conv_to_posix_path (c:\WINDOWS\System32\Wbem)
   18    3685 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\Programme\ATI, keep-rel, no-add-slash)
   17    3702 [main] rpctst_server 1828 normalize_win32_path: c:\Programme\ATI = normalize_win32_path (c:\Programme\ATI)
   18    3720 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/Programme/ATI = conv_to_posix_path (c:\Programme\ATI)
   18    3738 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (Technologies\ATI, keep-rel, no-add-slash)
   17    3755 [main] rpctst_server 1828 mount_info::conv_to_posix_path: Technologies/ATI = conv_to_posix_path (Technologies\ATI)
   18    3773 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (Control, keep-rel, no-add-slash)
   17    3790 [main] rpctst_server 1828 mount_info::conv_to_posix_path: Control = conv_to_posix_path (Control)
   17    3807 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (Panel, keep-rel, no-add-slash)
   17    3824 [main] rpctst_server 1828 mount_info::conv_to_posix_path: Panel = conv_to_posix_path (Panel)
   17    3841 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\Programme\j2sdk1.4.2_02\bin, keep-rel, no-add-slash)
   18    3859 [main] rpctst_server 1828 normalize_win32_path: c:\Programme\j2sdk1.4.2_02\bin = normalize_win32_path (c:\Programme\j2sdk1.4.2_02\bin)
   18    3877 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/Programme/j2sdk1.4.2_02/bin = conv_to_posix_path (c:\Programme\j2sdk1.4.2_02\bin)
   19    3896 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\programme\devstudio\sharedide\bin\ide, keep-rel, no-add-slash)
   18    3914 [main] rpctst_server 1828 normalize_win32_path: c:\programme\devstudio\sharedide\bin\ide = normalize_win32_path (c:\programme\devstudio\sharedide\bin\ide)
   18    3932 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/programme/devstudio/sharedide/bin/ide = conv_to_posix_path (c:\programme\devstudio\sharedide\bin\ide)
   19    3951 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\programme\devstudio\sharedide\bin, keep-rel, no-add-slash)
   18    3969 [main] rpctst_server 1828 normalize_win32_path: c:\programme\devstudio\sharedide\bin = normalize_win32_path (c:\programme\devstudio\sharedide\bin)
   51    4020 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/programme/devstudio/sharedide/bin = conv_to_posix_path (c:\programme\devstudio\sharedide\bin)
   22    4042 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\programme\devstudio\vc\bin, keep-rel, no-add-slash)
   18    4060 [main] rpctst_server 1828 normalize_win32_path: c:\programme\devstudio\vc\bin = normalize_win32_path (c:\programme\devstudio\vc\bin)
   18    4078 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/programme/devstudio/vc/bin = conv_to_posix_path (c:\programme\devstudio\vc\bin)
   18    4096 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\Programme\Borland\bcc55\bin, keep-rel, no-add-slash)
   18    4114 [main] rpctst_server 1828 normalize_win32_path: c:\Programme\Borland\bcc55\bin = normalize_win32_path (c:\Programme\Borland\bcc55\bin)
   18    4132 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/Programme/Borland/bcc55/bin = conv_to_posix_path (c:\Programme\Borland\bcc55\bin)
   19    4151 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\programme\ssh, keep-rel, no-add-slash)
   18    4169 [main] rpctst_server 1828 normalize_win32_path: c:\programme\ssh = normalize_win32_path (c:\programme\ssh)
   17    4186 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/programme/ssh = conv_to_posix_path (c:\programme\ssh)
   18    4204 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\cmd, keep-rel, no-add-slash)
   17    4221 [main] rpctst_server 1828 normalize_win32_path: c:\cmd = normalize_win32_path (c:\cmd)
   17    4238 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/cmd = conv_to_posix_path (c:\cmd)
   18    4256 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\emacs, keep-rel, no-add-slash)
   17    4273 [main] rpctst_server 1828 normalize_win32_path: c:\emacs = normalize_win32_path (c:\emacs)
   17    4290 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/emacs = conv_to_posix_path (c:\emacs)
   18    4308 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\Programme\Sonic\MyDVD, keep-rel, no-add-slash)
   17    4325 [main] rpctst_server 1828 normalize_win32_path: c:\Programme\Sonic\MyDVD = normalize_win32_path (c:\Programme\Sonic\MyDVD)
   18    4343 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/Programme/Sonic/MyDVD = conv_to_posix_path (c:\Programme\Sonic\MyDVD)
   19    4362 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\programme\imagemagick-5.5.7-q16, keep-rel, no-add-slash)
   24    4386 [main] rpctst_server 1828 normalize_win32_path: c:\programme\imagemagick-5.5.7-q16 = normalize_win32_path (c:\programme\imagemagick-5.5.7-q16)
   18    4404 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/programme/imagemagick-5.5.7-q16 = conv_to_posix_path (c:\programme\imagemagick-5.5.7-q16)
   18    4422 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\bin, keep-rel, no-add-slash)
   18    4440 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\bin = normalize_win32_path (C:\cygwin\bin)
   17    4457 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /usr/bin = conv_to_posix_path (C:\cygwin\bin)
   18    4475 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (c:\Programme\MPICH\mpd\bin, keep-rel, no-add-slash)
   18    4493 [main] rpctst_server 1828 normalize_win32_path: c:\Programme\MPICH\mpd\bin = normalize_win32_path (c:\Programme\MPICH\mpd\bin)
   17    4510 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /cygdrive/c/Programme/MPICH/mpd/bin = conv_to_posix_path (c:\Programme\MPICH\mpd\bin)
   19    4529 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\home\Admin\Cygwin\x86\bin, keep-rel, no-add-slash)
   21    4550 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\home\Admin\Cygwin\x86\bin = normalize_win32_path (C:\cygwin\home\Admin\Cygwin\x86\bin)
   19    4569 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /home/Admin/Cygwin/x86/bin = conv_to_posix_path (C:\cygwin\home\Admin\Cygwin\x86\bin)
   18    4587 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\home\Admin\Cygwin\x86\lib, keep-rel, no-add-slash)
   18    4605 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\home\Admin\Cygwin\x86\lib = normalize_win32_path (C:\cygwin\home\Admin\Cygwin\x86\lib)
   18    4623 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /home/Admin/Cygwin/x86/lib = conv_to_posix_path (C:\cygwin\home\Admin\Cygwin\x86\lib)
   18    4641 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (.\, keep-rel, add-slash)
   17    4658 [main] rpctst_server 1828 mount_info::conv_to_posix_path: ./ = conv_to_posix_path (.\)
   51    4709 [main] rpctst_server 1828 win_env::add_cache: posix /usr/bin:/usr/X11R6/bin:/usr/autotool/stable/bin:/sbin:/usr/sbin:/usr/X11R6/sbin/fvwm/2.4.7:/usr/local/bin:/usr/local/bin:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/Programme/ATI:Technologies/ATI:Control:Panel:/cygdrive/c/Programme/j2sdk1.4.2_02/bin:/cygdrive/c/programme/devstudio/sharedide/bin/ide:/cygdrive/c/programme/devstudio/sharedide/bin:/cygdrive/c/programme/devstudio/vc/bin:/cygdrive/c/Programme/Borland/bcc55/bin:/cygdrive/c/programme/ssh:/cygdrive/c/cmd:/cygdrive/c/emacs:/cygdrive/c/Programme/Sonic/MyDVD:/cygdrive/c/programme/imagemagick-5.5.7-q16:/usr/bin:/cygdrive/c/Programme/MPICH/mpd/bin:/home/Admin/Cygwin/x86/bin:/home/Admin/Cygwin/x86/lib:./
   35    4744 [main] rpctst_server 1828 win_env::add_cache: native PATH=C:\cygwin\bin;C:\cygwin\usr\X11R6\bin;C:\cygwin\usr\autotool\stable\bin;C:\cygwin\sbin;C:\cygwin\usr\sbin;C:\cygwin\usr\X11R6\sbin\fvwm\2.4.7;C:\cygwin\usr\local\bin;C:\cygwin\usr\local\bin;C:\cygwin\bin;C:\cygwin\bin;C:\cygwin\usr\X11R6\bin;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;c:\Programme\ATI;Technologies\ATI;Control;Panel;c:\Programme\j2sdk1.4.2_02\bin;c:\programme\devstudio\sharedide\bin\ide;c:\programme\devstudio\sharedide\bin;c:\programme\devstudio\vc\bin;c:\Programme\Borland\bcc55\bin;c:\programme\ssh;c:\cmd;c:\emacs;c:\Programme\Sonic\MyDVD;c:\programme\imagemagick-5.5.7-q16;C:\cygwin\bin;c:\Programme\MPICH\mpd\bin;C:\cygwin\home\Admin\Cygwin\x86\bin;C:\cygwin\home\Admin\Cygwin\x86\lib;.\
   28    4772 [main] rpctst_server 1828 posify: env var converted to PATH=/usr/bin:/usr/X11R6/bin:/usr/autotool/stable/bin:/sbin:/usr/sbin:/usr/X11R6/sbin/fvwm/2.4.7:/usr/local/bin:/usr/local/bin:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/Programme/ATI:Technologies/ATI:Control:Panel:/cygdrive/c/Programme/j2sdk1.4.2_02/bin:/cygdrive/c/programme/devstudio/sharedide/bin/ide:/cygdrive/c/programme/devstudio/sharedide/bin:/cygdrive/c/programme/devstudio/vc/bin:/cygdrive/c/Programme/Borland/bcc55/bin:/cygdrive/c/programme/ssh:/cygdrive/c/cmd:/cygdrive/c/emacs:/cygdrive/c/Programme/Sonic/MyDVD:/cygdrive/c/programme/imagemagick-5.5.7-q16:/usr/bin:/cygdrive/c/Programme/MPICH/mpd/bin:/home/Admin/Cygwin/x86/bin:/home/Admin/Cygwin/x86/lib:./
   42    4814 [main] rpctst_server 1828 environ_init: 0xA050F40: PATH=/usr/bin:/usr/X11R6/bin:/usr/autotool/stable/bin:/sbin:/usr/sbin:/usr/X11R6/sbin/fvwm/2.4.7:/usr/local/bin:/usr/local/bin:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/Programme/ATI:Technologies/ATI:Control:Panel:/cygdrive/c/Programme/j2sdk1.4.2_02/bin:/cygdrive/c/programme/devstudio/sharedide/bin/ide:/cygdrive/c/programme/devstudio/sharedide/bin:/cygdrive/c/programme/devstudio/vc/bin:/cygdrive/c/Programme/Borland/bcc55/bin:/cygdrive/c/programme/ssh:/cygdrive/c/cmd:/cygdrive/c/emacs:/cygdrive/c/Programme/Sonic/MyDVD:/cygdrive/c/programme/imagemagick-5.5.7-q16:/usr/bin:/cygdrive/c/Programme/MPICH/mpd/bin:/home/Admin/Cygwin/x86/bin:/home/Admin/Cygwin/x86/lib:./
   48    4862 [main] rpctst_server 1828 environ_init: 0xA050C60: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
   31    4893 [main] rpctst_server 1828 environ_init: 0xA050CA0: PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig
   31    4924 [main] rpctst_server 1828 environ_init: 0xA050CD0: PROCESSOR_ARCHITECTURE=x86
   31    4955 [main] rpctst_server 1828 environ_init: 0xA050CF0: PROCESSOR_IDENTIFIER=x86 Family 6 Model 9 Stepping 5, GenuineIntel
   31    4986 [main] rpctst_server 1828 environ_init: 0xA050D38: PROCESSOR_LEVEL=6
   30    5016 [main] rpctst_server 1828 environ_init: 0xA050D50: PROCESSOR_REVISION=0905
   31    5047 [main] rpctst_server 1828 environ_init: 0xA050D70: PROGRAMFILES=C:\Programme
   30    5077 [main] rpctst_server 1828 environ_init: 0xA0508A8: PROMPT=$P$G
   30    5107 [main] rpctst_server 1828 environ_init: 0xA050D90: PWD=/tmp/z
   30    5137 [main] rpctst_server 1828 environ_init: 0xA050DA0: REMOTEHOST=eiger
   30    5167 [main] rpctst_server 1828 environ_init: 0xA050DB8: SESSIONNAME=Console
   30    5197 [main] rpctst_server 1828 environ_init: 0xA050DD0: SHLVL=2
   30    5227 [main] rpctst_server 1828 environ_init: 0xA050DE0: SSH_AGENT_PID=536
   30    5257 [main] rpctst_server 1828 environ_init: 0xA050DF8: SSH_AUTH_SOCK=/tmp/ssh-IDgoju3368/agent.3368
   30    5287 [main] rpctst_server 1828 environ_init: 0xA050E30: SYSTEMDRIVE=C:
   30    5317 [main] rpctst_server 1828 environ_init: 0xA050E48: SYSTEMROOT=C:\WINDOWS
   30    5347 [main] rpctst_server 1828 environ_init: 0xA050E68: SYSTEM_ENV=Cygwin
   30    5377 [main] rpctst_server 1828 environ_init: 0xA050E80: TERM=xterm
   69    5446 [main] rpctst_server 1828 environ_init: 0xA051C38: TERMCAP=xterm-r6|xterm|xterm X11R6 version:am:km:mi:ms:xn:co#80:it#8:li#33:AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:is=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:te=\E[2J\E[?47l\E8:ti=\E7\E[?47h:ue=\E[m:up=\E[A:us=\E[4m:kb=\010:
   44    5490 [main] rpctst_server 1828 environ_init: 0xA050E90: TZ=   -1   -2,M3.5.0/2,M10.5.0/3
   30    5520 [main] rpctst_server 1828 environ_init: 0xA050EB8: USER=Admin
   30    5550 [main] rpctst_server 1828 environ_init: 0xA050EC8: USERDOMAIN=EIGER
   30    5580 [main] rpctst_server 1828 environ_init: 0xA050EE0: USERNAME=Admin
   30    5610 [main] rpctst_server 1828 environ_init: 0xA050EF8: USERPROFILE=C:\Dokumente und Einstellungen\Admin
   31    5641 [main] rpctst_server 1828 environ_init: 0xA051EE8: VENDOR=intel
   30    5671 [main] rpctst_server 1828 environ_init: 0xA051F00: WINDIR=C:\WINDOWS
   31    5702 [main] rpctst_server 1828 environ_init: 0xA051F18: WINDOWID=8388622
   30    5732 [main] rpctst_server 1828 environ_init: 0xA051F30: XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB
   24    5756 [main] rpctst_server 1828 pinfo_init: pid 1828, pgid 1828
   55    5811 [main] rpctst_server 1828 dtable::extend: size 32, fds 0x61780CB8
   28    5839 [main] rpctst_server 1828 normalize_posix_path: src /etc/passwd
   19    5858 [main] rpctst_server 1828 normalize_posix_path: /etc/passwd = normalize_posix_path (/etc/passwd)
   17    5875 [main] rpctst_server 1828 mount_info::conv_to_win32_path: conv_to_win32_path (/etc/passwd)
   21    5896 [main] rpctst_server 1828 set_flags: flags: binary (0x2)
   17    5913 [main] rpctst_server 1828 mount_info::conv_to_win32_path: src_path /etc/passwd, dst C:\cygwin\etc\passwd, flags 0xA, rc 0
   41    5954 [main] rpctst_server 1828 symlink_info::check: not a symlink
   23    5977 [main] rpctst_server 1828 symlink_info::check: 0 = symlink.check (C:\cygwin\etc\passwd, 0x22E980) (0xA)
   19    5996 [main] rpctst_server 1828 path_conv::check: this->path(C:\cygwin\etc\passwd), has_acls(1)
   75    6071 [main] rpctst_server 1828 etc::test_file_change: FindFirstFile succeeded
   21    6092 [main] rpctst_server 1828 etc::test_file_change: fn[1] C:\cygwin\etc\passwd res 1
   17    6109 [main] rpctst_server 1828 etc::init: fn[1] C:\cygwin\etc\passwd, curr_ix 1
   17    6126 [main] rpctst_server 1828 pwdgrp::load: /etc/passwd
  151    6277 [main] rpctst_server 1828 pwdgrp::load: /etc/passwd curr_lines 10
   18    6295 [main] rpctst_server 1828 pwdgrp::load: /etc/passwd load succeeded
   32    6327 [main] rpctst_server 1828 normalize_posix_path: src /etc/group
   18    6345 [main] rpctst_server 1828 normalize_posix_path: /etc/group = normalize_posix_path (/etc/group)
   17    6362 [main] rpctst_server 1828 mount_info::conv_to_win32_path: conv_to_win32_path (/etc/group)
   20    6382 [main] rpctst_server 1828 set_flags: flags: binary (0x2)
   25    6407 [main] rpctst_server 1828 mount_info::conv_to_win32_path: src_path /etc/group, dst C:\cygwin\etc\group, flags 0xA, rc 0
   38    6445 [main] rpctst_server 1828 symlink_info::check: not a symlink
   19    6464 [main] rpctst_server 1828 symlink_info::check: 0 = symlink.check (C:\cygwin\etc\group, 0x22E940) (0xA)
   18    6482 [main] rpctst_server 1828 path_conv::check: this->path(C:\cygwin\etc\group), has_acls(1)
   59    6541 [main] rpctst_server 1828 etc::test_file_change: FindFirstFile succeeded
   51    6592 [main] rpctst_server 1828 etc::test_file_change: fn[2] C:\cygwin\etc\group res 1
   19    6611 [main] rpctst_server 1828 etc::init: fn[2] C:\cygwin\etc\group, curr_ix 2
   17    6628 [main] rpctst_server 1828 pwdgrp::load: /etc/group
  122    6750 [main] rpctst_server 1828 pwdgrp::load: /etc/group curr_lines 12
   17    6767 [main] rpctst_server 1828 pwdgrp::load: /etc/group load succeeded
   25    6792 [main] rpctst_server 1828 cygheap_user::ontherange: what 2, pw 0xA052448
   20    6812 [main] rpctst_server 1828 cygheap_user::ontherange: HOME is already in the environment /home/Admin
  116    6928 [main] rpctst_server 1828 sigproc_init: process/signal handling enabled(1001)
   26    6954 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   31    6985 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
  125    7110 [sig] rpctst_server 1828 wait_sig: entering ReadFile loop, readsig 0x6F4, myself->sendsig 0x6F0
   54    7164 [main] rpctst_server 1828 tty_list::allocate_tty: console 202B6 already associated with tty0
   27    7191 [main] rpctst_server 1828 tty_list::allocate_tty: console 0x202B6 associated with tty0
   38    7229 [main] rpctst_server 1828 build_argv: argv[0] = 'rpctst_server.exe'
   17    7246 [main] rpctst_server 1828 build_argv: argc 1
   43    7289 [main] rpctst_server 1828 build_fh_pc: fh 0x61780E20
   22    7311 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   19    7330 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18    7348 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   18    7366 [main] rpctst_server 1828 fhandler_base::init: created new fhandler_base for handle 0x64C, bin 1
   18    7384 [main] rpctst_server 1828 dtable::init_std_file_from_handle: fd 0, handle 0x64C
  154    7538 [main] rpctst_server 1828 handle_to_fn: nt name '\Device\HarddiskVolume1\cygwin\tmp\z\strace-rpctst'
  949    8487 [main] rpctst_server 1828 handle_to_fn: current match '\Device\HarddiskVolume1'
   35    8522 [main] rpctst_server 1828 handle_to_fn: derived path 'C:\cygwin\tmp\z\strace-rpctst'
   20    8542 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\tmp\z\strace-rpctst, no-keep-rel, no-add-slash)
   20    8562 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\tmp\z\strace-rpctst = normalize_win32_path (C:\cygwin\tmp\z\strace-rpctst)
   96    8658 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /tmp/z/strace-rpctst = conv_to_posix_path (C:\cygwin\tmp\z\strace-rpctst)
   23    8681 [main] rpctst_server 1828 normalize_posix_path: src /tmp/z/strace-rpctst
   19    8700 [main] rpctst_server 1828 normalize_posix_path: /tmp/z/strace-rpctst = normalize_posix_path (/tmp/z/strace-rpctst)
   19    8719 [main] rpctst_server 1828 mount_info::conv_to_win32_path: conv_to_win32_path (/tmp/z/strace-rpctst)
   21    8740 [main] rpctst_server 1828 set_flags: flags: binary (0x2)
   19    8759 [main] rpctst_server 1828 mount_info::conv_to_win32_path: src_path /tmp/z/strace-rpctst, dst C:\cygwin\tmp\z\strace-rpctst, flags 0xA, rc 0
   56    8815 [main] rpctst_server 1828 symlink_info::check: not a symlink
   20    8835 [main] rpctst_server 1828 symlink_info::check: 0 = symlink.check (C:\cygwin\tmp\z\strace-rpctst, 0x22E7F0) (0xA)
   21    8856 [main] rpctst_server 1828 path_conv::check: this->path(C:\cygwin\tmp\z\strace-rpctst), has_acls(1)
   25    8881 [main] rpctst_server 1828 build_fh_pc: fh 0x61781028
   24    8905 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   18    8923 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18    8941 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17    8958 [main] rpctst_server 1828 fhandler_base::init: created new fhandler_base for handle 0x730, bin 1
   19    8977 [main] rpctst_server 1828 dtable::init_std_file_from_handle: fd 1, handle 0x730
   77    9054 [main] rpctst_server 1828 handle_to_fn: nt name '\Device\HarddiskVolume1\cygwin\tmp\z\strace-rpctst'
  772    9826 [main] rpctst_server 1828 handle_to_fn: current match '\Device\HarddiskVolume1'
   34    9860 [main] rpctst_server 1828 handle_to_fn: derived path 'C:\cygwin\tmp\z\strace-rpctst'
   19    9879 [main] rpctst_server 1828 mount_info::conv_to_posix_path: conv_to_posix_path (C:\cygwin\tmp\z\strace-rpctst, no-keep-rel, no-add-slash)
   20    9899 [main] rpctst_server 1828 normalize_win32_path: C:\cygwin\tmp\z\strace-rpctst = normalize_win32_path (C:\cygwin\tmp\z\strace-rpctst)
   20    9919 [main] rpctst_server 1828 mount_info::conv_to_posix_path: /tmp/z/strace-rpctst = conv_to_posix_path (C:\cygwin\tmp\z\strace-rpctst)
   19    9938 [main] rpctst_server 1828 normalize_posix_path: src /tmp/z/strace-rpctst
   18    9956 [main] rpctst_server 1828 normalize_posix_path: /tmp/z/strace-rpctst = normalize_posix_path (/tmp/z/strace-rpctst)
   18    9974 [main] rpctst_server 1828 mount_info::conv_to_win32_path: conv_to_win32_path (/tmp/z/strace-rpctst)
   19    9993 [main] rpctst_server 1828 set_flags: flags: binary (0x2)
   18   10011 [main] rpctst_server 1828 mount_info::conv_to_win32_path: src_path /tmp/z/strace-rpctst, dst C:\cygwin\tmp\z\strace-rpctst, flags 0xA, rc 0
   43   10054 [main] rpctst_server 1828 symlink_info::check: not a symlink
   19   10073 [main] rpctst_server 1828 symlink_info::check: 0 = symlink.check (C:\cygwin\tmp\z\strace-rpctst, 0x22E7F0) (0xA)
   20   10093 [main] rpctst_server 1828 path_conv::check: this->path(C:\cygwin\tmp\z\strace-rpctst), has_acls(1)
   21   10114 [main] rpctst_server 1828 build_fh_pc: fh 0x61781230
   19   10133 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   18   10151 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18   10169 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17   10186 [main] rpctst_server 1828 fhandler_base::init: created new fhandler_base for handle 0x6A4, bin 1
   18   10204 [main] rpctst_server 1828 dtable::init_std_file_from_handle: fd 2, handle 0x6A4
   25   10229 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   18   10247 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   19   10266 [main] rpctst_server 1828 dll_crt0_1: user_data->main 0x401260
   25   10291 [main] rpctst_server 1828 wait_for_sigthread: wait_sig_inited 0x70C
  104   10395 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   25   10420 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   24   10444 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 0)
 3118   13562 [main] rpctst_server 1828 wsock_init: res 0
   47   13609 [main] rpctst_server 1828 wsock_init: wVersion 514
   18   13627 [main] rpctst_server 1828 wsock_init: wHighVersion 514
   18   13645 [main] rpctst_server 1828 wsock_init: szDescription WinSock 2.0
   17   13662 [main] rpctst_server 1828 wsock_init: szSystemStatus Running
   16   13678 [main] rpctst_server 1828 wsock_init: iMaxSockets 0
   17   13695 [main] rpctst_server 1828 wsock_init: iMaxUdpDg 0
   16   13711 [main] rpctst_server 1828 wsock_init: lpVendorInfo 0
 1187   14898 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   40   14938 [main] rpctst_server 1828 build_fh_pc: fh 0x61781438
   21   14959 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   18   14977 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18   14995 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17   15012 [main] rpctst_server 1828 fdsock: fd 3, name '', soc 0x6D4
   18   15030 [main] rpctst_server 1828 cygwin_socket: 3 = socket (2, 2, 0)
   19   15049 [main] rpctst_server 1828 ioctl: fd 3, cmd 80087364
 2295   17344 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (80087364, 22EB78)
   57   17401 [main] rpctst_server 1828 ioctl: returning 0
   43   17444 [main] rpctst_server 1828 ioctl: fd 3, cmd 80207365
   19   17463 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (80207365, 22EB80)
   19   17482 [main] rpctst_server 1828 ioctl: returning 0
   21   17503 [main] rpctst_server 1828 close: close (3)
   92   17595 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   25   17620 [main] rpctst_server 1828 close: 0 = close (3)
  863   18483 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 17)
  100   18583 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   27   18610 [main] rpctst_server 1828 build_fh_pc: fh 0x61781438
   19   18629 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   18   18647 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   17   18664 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17   18681 [main] rpctst_server 1828 fdsock: fd 3, name '', soc 0x680
   18   18699 [main] rpctst_server 1828 cygwin_socket: 3 = socket (2, 2, 17)
  143   18842 [main] rpctst_server 1828 cygwin_bind: 0 = bind (3, 0x22EF10, 16)
   24   18866 [main] rpctst_server 1828 ioctl: fd 3, cmd 8004667E
   48   18914 [main] rpctst_server 1828 fhandler_socket::ioctl: socket is now nonblocking
   22   18936 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (8004667E, 22EF64)
   19   18955 [main] rpctst_server 1828 ioctl: returning 0
  161   19116 [main] rpctst_server 1828 __set_winsock_errno: sendto:1064 - winsock error 10049 -> errno 125
   23   19139 [main] rpctst_server 1828 cygwin_sendto: -1 = sendto (3, 0xA052C10, 56, 0, 0xA052A28, 16)
   20   19159 [main] rpctst_server 1828 close: close (3)
   52   19211 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   22   19233 [main] rpctst_server 1828 close: 0 = close (3)
   47   19280 [main] rpctst_server 1828 close: close (3)
   17   19297 [main] rpctst_server 1828 close: -1 = close (3)
   18   19315 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 0)
   43   19358 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   22   19380 [main] rpctst_server 1828 build_fh_pc: fh 0x61781438
   18   19398 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   28   19426 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   24   19450 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   18   19468 [main] rpctst_server 1828 fdsock: fd 3, name '', soc 0x680
   17   19485 [main] rpctst_server 1828 cygwin_socket: 3 = socket (2, 2, 0)
   18   19503 [main] rpctst_server 1828 ioctl: fd 3, cmd 80087364
  458   19961 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (80087364, 22EB78)
   25   19986 [main] rpctst_server 1828 ioctl: returning 0
   18   20004 [main] rpctst_server 1828 ioctl: fd 3, cmd 80207365
   18   20022 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (80207365, 22EB80)
   18   20040 [main] rpctst_server 1828 ioctl: returning 0
   17   20057 [main] rpctst_server 1828 close: close (3)
   32   20089 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   21   20110 [main] rpctst_server 1828 close: 0 = close (3)
   49   20159 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 17)
   42   20201 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   22   20223 [main] rpctst_server 1828 build_fh_pc: fh 0x61781438
   18   20241 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   17   20258 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18   20276 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17   20293 [main] rpctst_server 1828 fdsock: fd 3, name '', soc 0x680
   17   20310 [main] rpctst_server 1828 cygwin_socket: 3 = socket (2, 2, 17)
   68   20378 [main] rpctst_server 1828 cygwin_bind: 0 = bind (3, 0x22EF10, 16)
   21   20399 [main] rpctst_server 1828 ioctl: fd 3, cmd 8004667E
   20   20419 [main] rpctst_server 1828 fhandler_socket::ioctl: socket is now nonblocking
   25   20444 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (8004667E, 22EF64)
   18   20462 [main] rpctst_server 1828 ioctl: returning 0
   30   20492 [main] rpctst_server 1828 __set_winsock_errno: sendto:1064 - winsock error 10049 -> errno 125
   20   20512 [main] rpctst_server 1828 cygwin_sendto: -1 = sendto (3, 0xA052C10, 56, 0, 0xA052A28, 16)
   19   20531 [main] rpctst_server 1828 close: close (3)
   42   20573 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   21   20594 [main] rpctst_server 1828 close: 0 = close (3)
   46   20640 [main] rpctst_server 1828 close: close (3)
   16   20656 [main] rpctst_server 1828 close: -1 = close (3)
   18   20674 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 17)
   39   20713 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   22   20735 [main] rpctst_server 1828 build_fh_pc: fh 0x61781438
   17   20752 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   18   20770 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18   20788 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17   20805 [main] rpctst_server 1828 fdsock: fd 3, name '', soc 0x680
   17   20822 [main] rpctst_server 1828 cygwin_socket: 3 = socket (2, 2, 17)
   54   20876 [main] rpctst_server 1828 cygwin_bind: 0 = bind (3, 0x22EFD0, 16)
   65   20941 [main] rpctst_server 1828 cygwin_getsockname: 0 = getsockname (3, 0x22EFD0, 0x22EFCC)
  103   21044 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 0)
   71   21115 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   23   21138 [main] rpctst_server 1828 build_fh_pc: fh 0x61781848
   18   21156 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   18   21174 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   17   21191 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   22   21213 [main] rpctst_server 1828 fdsock: fd 4, name '', soc 0x670
   18   21231 [main] rpctst_server 1828 cygwin_socket: 4 = socket (2, 2, 0)
   18   21249 [main] rpctst_server 1828 ioctl: fd 4, cmd 80087364
  384   21633 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (80087364, 22EB48)
   23   21656 [main] rpctst_server 1828 ioctl: returning 0
   18   21674 [main] rpctst_server 1828 ioctl: fd 4, cmd 80207365
   18   21692 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (80207365, 22EB50)
   18   21710 [main] rpctst_server 1828 ioctl: returning 0
   17   21727 [main] rpctst_server 1828 close: close (4)
   31   21758 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   21   21779 [main] rpctst_server 1828 close: 0 = close (4)
   48   21827 [main] rpctst_server 1828 cygwin_socket: socket (2, 2, 17)
   40   21867 [main] rpctst_server 1828 fdsock: reset socket inheritance since winsock2_active 1
   22   21889 [main] rpctst_server 1828 build_fh_pc: fh 0x61781848
   18   21907 [main] rpctst_server 1828 fhandler_base::set_flags: flags 0x10002, supplied_bin 0x0
   17   21924 [main] rpctst_server 1828 fhandler_base::set_flags: O_TEXT/O_BINARY set in flags 0x10000
   18   21942 [main] rpctst_server 1828 fhandler_base::set_flags: filemode set to binary
   17   21959 [main] rpctst_server 1828 fdsock: fd 4, name '', soc 0x670
   17   21976 [main] rpctst_server 1828 cygwin_socket: 4 = socket (2, 2, 17)
   59   22035 [main] rpctst_server 1828 cygwin_bind: 0 = bind (4, 0x22EEE0, 16)
   21   22056 [main] rpctst_server 1828 ioctl: fd 4, cmd 8004667E
   21   22077 [main] rpctst_server 1828 fhandler_socket::ioctl: socket is now nonblocking
   18   22095 [main] rpctst_server 1828 fhandler_socket::ioctl: 0 = ioctl_socket (8004667E, 22EF34)
   18   22113 [main] rpctst_server 1828 ioctl: returning 0
   30   22143 [main] rpctst_server 1828 __set_winsock_errno: sendto:1064 - winsock error 10049 -> errno 125
   20   22163 [main] rpctst_server 1828 cygwin_sendto: -1 = sendto (4, 0xA055248, 56, 0, 0xA055060, 16)
   40   22203 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   24   22227 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   19   22246 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   21   22267 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   19   22286 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   18   22304 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   20   22324 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   21   22345 [main] rpctst_server 1828 writev: writev (2, 0x22EEB0, 1)
   20   22365 [main] rpctst_server 1828 fhandler_base::write: binary write
Cannot register service: RPC: Unable to send; errno = Cannot assign requested address
   20   22385 [main] rpctst_server 1828 fhandler_base::write: 86 = write (0xA0553E0, 86)
   18   22403 [main] rpctst_server 1828 writev: 86 = write (2, 0x22EEB0, 1), errno 125
   18   22421 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   24   22445 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   18   22463 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   22481 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   21   22502 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   22520 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   18   22538 [main] rpctst_server 1828 writev: writev (2, 0x22D610, 1)
   18   22556 [main] rpctst_server 1828 fhandler_base::write: binary write
unable to register (RPCtest, RPCtestVers2, udp).
   19   22575 [main] rpctst_server 1828 fhandler_base::write: 49 = write (0x22D6B0, 49)
   18   22593 [main] rpctst_server 1828 writev: 49 = write (2, 0x22D610, 1), errno 125
   22   22615 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   23   22638 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   19   22657 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   22674 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   22691 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   18   22709 [main] rpctst_server 1828 close: close (0)
   22   22731 [main] rpctst_server 1828 close: 0 = close (0)
   18   22749 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   17   22766 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   22784 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   17   22801 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   22818 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   22835 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   22852 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   22869 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   17   22886 [main] rpctst_server 1828 close: close (1)
   18   22904 [main] rpctst_server 1828 fhandler_base::close: closing '/tmp/z/strace-rpctst' handle 0x730
   20   22924 [main] rpctst_server 1828 close: 0 = close (1)
   17   22941 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   22959 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   17   22976 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   17   22993 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   23010 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   23027 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   23044 [main] rpctst_server 1828 __cygwin_lock_lock: threadcount 1.  not locking
   17   23061 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   23079 [main] rpctst_server 1828 close: close (2)
   17   23096 [main] rpctst_server 1828 fhandler_base::close: closing '/tmp/z/strace-rpctst' handle 0x6A4
   19   23115 [main] rpctst_server 1828 close: 0 = close (2)
   17   23132 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   17   23149 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   23167 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   16   23183 [main] rpctst_server 1828 __cygwin_lock_unlock: threadcount 1.  not unlocking
   18   23201 [main] rpctst_server 1828 do_exit: do_exit (1), exit_state 0
   19   23220 [main] rpctst_server 1828 void: 0x0 = signal (20, 0x1)
   18   23238 [main] rpctst_server 1828 void: 0x0 = signal (1, 0x1)
   16   23254 [main] rpctst_server 1828 void: 0x0 = signal (2, 0x1)
   17   23271 [main] rpctst_server 1828 void: 0x0 = signal (3, 0x1)
   44   23315 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   43   23358 [main] rpctst_server 1828 fhandler_socket::close: 0 = fhandler_socket::close()
   21   23379 [main] rpctst_server 1828 sigproc_terminate: entering
   27   23406 [sig] rpctst_server 1828 wait_sig: done
   25   23431 [sig] rpctst_server 1828 _cygtls::remove: wait 0x0
   76   23507 [main] rpctst_server 1828 proc_terminate: nchildren 0, nzombies 0
   55   23562 [main] rpctst_server 1828 proc_terminate: leaving
   22   23584 [main] rpctst_server 1828 do_exit: 1828 == sid 1828, send SIGHUP to children
   37   23621 [main] rpctst_server 1828 __to_clock_t: dwHighDateTime 0, dwLowDateTime 100144
   18   23639 [main] rpctst_server 1828 __to_clock_t: total 00000000 0000000A
   17   23656 [main] rpctst_server 1828 __to_clock_t: dwHighDateTime 0, dwLowDateTime 200288
   20   23676 [main] rpctst_server 1828 __to_clock_t: total 00000000 00000014
  413   24089 [main] rpctst_server 1828 _pinfo::exit: Calling ExitProcess 1
--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]