The FIXME's have been.

SVN revision: 19055
This commit is contained in:
David Walter Seikel 2005-12-16 01:09:52 +00:00
parent 6fbd81ed4c
commit 9b4adfbd25
1 changed files with 7 additions and 7 deletions

View File

@ -150,13 +150,13 @@ struct _Ecore_Exe
char *tag;
char *cmd;
Ecore_Exe_Flags flags;
Ecore_Fd_Handler *write_fd_handler; /* FIXME: the fd_handler to handle write to child - if this was used, or NULL if not */
Ecore_Fd_Handler *read_fd_handler; /* FIXME: the fd_handler to handle read from child - if this was used, or NULL if not */
void *write_data_buf; /* FIXME: a data buffer for data to write to the child - realloced as needed for more data and flushed when the fd handler says writes are possible */
int write_data_size; /* FIXME: the size in bytes of the data buffer */
int write_data_offset; /* FIXME: the offset in bytes in the data buffer */
void *read_data_buf; /* FIXME: data read from the child awating delivery to an event */
int read_data_size; /* FIXME: data read from child in bytes */
Ecore_Fd_Handler *write_fd_handler; /* the fd_handler to handle write to child - if this was used, or NULL if not */
Ecore_Fd_Handler *read_fd_handler; /* the fd_handler to handle read from child - if this was used, or NULL if not */
void *write_data_buf; /* a data buffer for data to write to the child - realloced as needed for more data and flushed when the fd handler says writes are possible */
int write_data_size; /* the size in bytes of the data buffer */
int write_data_offset; /* the offset in bytes in the data buffer */
void *read_data_buf; /* data read from the child awating delivery to an event */
int read_data_size; /* data read from child in bytes */
int child_fd_write; /* fd to write TO to send data to the child */
int child_fd_read; /* fd to read FROM when child has sent us (the parent) data */
};