X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Frenderfarmfsclient.h;h=079df702ad61e445893702a79a603bcead9ed8f8;hb=02595181cff2bce97eb19634bc3855778cb8c3b6;hp=b94415ed9af0b534ebadc5cdcaed71680edbf442;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/renderfarmfsclient.h b/cinelerra-5.1/cinelerra/renderfarmfsclient.h index b94415ed..079df702 100644 --- a/cinelerra-5.1/cinelerra/renderfarmfsclient.h +++ b/cinelerra-5.1/cinelerra/renderfarmfsclient.h @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #ifndef RENDERFARMFSCLIENT_H @@ -34,22 +34,22 @@ // The client runs on the client. // The traffic shares the same socket as the rest of the rendering traffic -// so the server and client command loops have to give control to the +// so the server and client command loops have to give control to the // VFS objects when they get a VFS command. -// Only one RenderFarmClient can exist per image because the stdio operations +// Only one RenderFarmClient can exist per image because the stdio operations // don't allow pointers to local storage. Fortunately only one // RenderFarmClient exists per image by default. The RenderFarmClient just needs // to wait until it's forked before creating RenderFarmFSClient. -// The RenderFarmClient is a mutual -// exclusion lock and table of file descriptors. +// The RenderFarmClient is a mutual +// exclusion lock and table of file descriptors. // It searches through the table to see if the file descriptor is virtual. -// Then it translates a single stdio call at a time to and from +// Then it translates a single stdio call at a time to and from // network commands, complete with the original parameters and return values. -// The RenderFarmFSServer takes one command from the network at a time and passes +// The RenderFarmFSServer takes one command from the network at a time and passes // it directly to the stdio call. If call has a buffer, the buffer is -// created by the RenderFarmFSServer and streamed over the network. +// created by the RenderFarmFSServer and streamed over the network. // The return values are passed untouched back through the network. // FILE* and int on RenderFarmClient are meaningless.