1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
|
fd = id->fd;
close(fd);
free(id);
return(TCL_OK);
}
static int tclsystem_socket_unix__chan_read(ClientData id_p, char *buf, int bufsize, int *errorCodePtr) {
struct tclsystem_socket_unix__chan_id *id;
ssize_t read_ret;
int fd;
int retval;
|
|
|
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
|
fd = id->fd;
close(fd);
free(id);
return(0);
}
static int tclsystem_socket_unix__chan_read(ClientData id_p, char *buf, int bufsize, int *errorCodePtr) {
struct tclsystem_socket_unix__chan_id *id;
ssize_t read_ret;
int fd;
int retval;
|