-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathft_create_buffer.m
47 lines (43 loc) · 1.43 KB
/
ft_create_buffer.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function ft_create_buffer(port)
% FT_CREATE_BUFFER starts the thread with the TCP server attached to the local
% MATLAB instance. The TCP server will listen to the specified network
% port, and accept incoming read and write requests.
%
% Use as
% ft_create_buffer(port)
% where port is the TCP port to which the server listens. The default port
% number is 1972.
%
% See also FT_DESTROY_BUFFER
% Copyright (C) 2010, Stefan Klanke
%
% This file is part of FieldTrip, see http://www.fieldtriptoolbox.org
% for the documentation and details.
%
% FieldTrip 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 3 of the License, or
% (at your option) any later version.
%
% FieldTrip 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 FieldTrip. If not, see <http://www.gnu.org/licenses/>.
%
% $Id$
if nargin<1
port = 1972;
end
try
buffer('tcpserver', 'init', 'localhost', port);
pause(1);
catch
if ~isempty(strfind(lasterr, 'thread is already running'))
ft_warning('thread is already running');
else
rethrow(lasterror);
end
end