Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators Request to close a thread that has been answered Post 302766441 by radoulov on Monday 4th of February 2013 05:09:12 PM
Old 02-04-2013
I've marked it as solved, this is sufficient.
 

6 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

how gollum answered..

Dear admins, i remember, my first thread, it is regarding unix systems and i asked some suggestions... and i like to know how gollum answered for that thread?.. and is gollum is a program?.. (5 Replies)
Discussion started by: sekar sundaram
5 Replies

2. Post Here to Contact Site Administrators and Moderators

How to close a thread

Hi Dumb question I know but I am new to this forum and have looked every where on this site but can not find "How to close" a thread I have posted.... Please advise on the procedures. Thanks Andrek (3 Replies)
Discussion started by: Andrek
3 Replies

3. Post Here to Contact Site Administrators and Moderators

indicating when a question has been answered?

hi, this is just a suggestion at Sun's java forums, the person who asked the original question has the ability to indicate that their question has been "answered". I think that is quite handy, as it lets people who are here to solely answer questions skip that thread. There is a potential... (5 Replies)
Discussion started by: JamesByars
5 Replies

4. What is on Your Mind?

Test: can a user close his own thread?

Just a test thread. (0 Replies)
Discussion started by: Perdy
0 Replies

5. Programming

when parent process close, how to close the child?

can someone provide an example, where if the parent process quits for any reason, then the child process will also close? (3 Replies)
Discussion started by: omega666
3 Replies

6. Post Here to Contact Site Administrators and Moderators

Request: Move thread to a different subforum

Hi, I've just posted a new thread on the "IP Networking" subforum, with the subject "Check connectivity with multiple hosts - BASH script available here". However, I think it should be on the "Shell Programming and Scripting" subforum, could you please move that thread there? Thanks! (1 Reply)
Discussion started by: Fr3dY
1 Replies
close(n)						       Tcl Built-In Commands							  close(n)

__________________________________________________________________________________________________________________________________________________

NAME
close - Close an open channel. SYNOPSIS
close channelId _________________________________________________________________ DESCRIPTION
Closes the channel given by channelId. ChannelId must be a channel identifier such as the return value from a previous open or socket com- mand. All buffered output is flushed to the channel's output device, any buffered input is discarded, the underlying file or device is closed, and channelId becomes unavailable for use. If the channel is blocking, the command does not return until all output is flushed. If the channel is nonblocking and there is unflushed | output, the channel remains open and the command returns immediately; output will be flushed in the background and the channel will be | closed when all the flushing is complete. If channelId is a blocking channel for a command pipeline then close waits for the child processes to complete. If the channel is shared between interpreters, then close makes channelId unavailable in the invoking interpreter but has no other effect | until all of the sharing interpreters have closed the channel. When the last interpreter in which the channel is registered invokes close, | the cleanup actions described above occur. See the interp command for a description of channel sharing. | Channels are automatically closed when an interpreter is destroyed and when the process exits. Channels are switched to blocking mode, to | ensure that all output is correctly flushed before the process exits. The command returns an empty string, and may generate an error if an error occurs while flushing output. SEE ALSO
file(n), open(n), socket(n), eof(n) KEYWORDS
blocking, channel, close, nonblocking Tcl 7.5 close(n)
All times are GMT -4. The time now is 03:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy