ruby-changes:6648
From: nobu <ko1@a...>
Date: Tue, 22 Jul 2008 21:08:40 +0900 (JST)
Subject: [ruby-changes:6648] Ruby:r18163 (mvm): * dir.c (get_cwd_fd): returns int.
nobu 2008-07-22 21:07:14 +0900 (Tue, 22 Jul 2008) New Revision: 18163 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18163 Log: * dir.c (get_cwd_fd): returns int. Modified files: branches/mvm/ChangeLog branches/mvm/dir.c Index: mvm/ChangeLog =================================================================== --- mvm/ChangeLog (revision 18162) +++ mvm/ChangeLog (revision 18163) @@ -1,3 +1,7 @@ +Tue Jul 22 21:07:12 2008 Nobuyoshi Nakada <nobu@r...> + + * dir.c (get_cwd_fd): returns int. + Thu Jul 17 13:13:37 2008 Nobuyoshi Nakada <nobu@r...> * ruby.c (process_options): set script_name directly and translate Index: mvm/dir.c =================================================================== --- mvm/dir.c (revision 18162) +++ mvm/dir.c (revision 18163) @@ -740,7 +740,7 @@ # if defined HAVE_OPENAT # define get_cwd_fd() openat(GET_THREAD()->cwd.fd, ".", O_RDONLY) # elif defined HAVE_DIRFD -void +int get_cwd_fd(void) { DIR *cwd = opendir(GET_THREAD()->cwd.path); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/