* fhandler.h (fhandler_pipe::raw_read): Remove __stdcall decoration.
* pipe.cc (fhandler_pipe::raw_read): Ditto.
This commit is contained in:
parent
7b9e380f03
commit
e3cbf1cc48
@ -1,3 +1,8 @@
|
|||||||
|
2008-09-11 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
|
* fhandler.h (fhandler_pipe::raw_read): Remove __stdcall decoration.
|
||||||
|
* pipe.cc (fhandler_pipe::raw_read): Ditto.
|
||||||
|
|
||||||
2008-09-11 Christopher Faylor <me+cygwin@cgf.cx>
|
2008-09-11 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* cygheap.cc (creturn): Reorganize to avoid a new compiler
|
* cygheap.cc (creturn): Reorganize to avoid a new compiler
|
||||||
|
@ -542,7 +542,7 @@ public:
|
|||||||
select_record *select_write (select_record *s);
|
select_record *select_write (select_record *s);
|
||||||
select_record *select_except (select_record *s);
|
select_record *select_except (select_record *s);
|
||||||
char *get_proc_fd_name (char *buf);
|
char *get_proc_fd_name (char *buf);
|
||||||
void __stdcall raw_read (void *ptr, size_t& len);
|
void raw_read (void *ptr, size_t& len);
|
||||||
int raw_write (const void *, size_t);
|
int raw_write (const void *, size_t);
|
||||||
int open (int flags, mode_t mode = 0);
|
int open (int flags, mode_t mode = 0);
|
||||||
int dup (fhandler_base *child);
|
int dup (fhandler_base *child);
|
||||||
|
@ -292,7 +292,7 @@ fhandler_pipe::get_proc_fd_name (char *buf)
|
|||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
void __stdcall
|
void
|
||||||
fhandler_pipe::raw_read (void *in_ptr, size_t& in_len)
|
fhandler_pipe::raw_read (void *in_ptr, size_t& in_len)
|
||||||
{
|
{
|
||||||
return read_overlapped (in_ptr, in_len);
|
return read_overlapped (in_ptr, in_len);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user