summaryrefslogtreecommitdiff
path: root/ioreplay/src/generate/gtask.c
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2018-03-06 17:38:59 +0000
committerPaul Buetow <pbuetow@mimecast.com>2018-03-06 17:38:59 +0000
commit26b3b3e368a79ce29df732ea04e72a4c002ae2ce (patch)
treee3fc8d7461ab371279f7bf9c692096cd39cc92f6 /ioreplay/src/generate/gtask.c
parentae2221660f9b411fa78cdf8034f0803e9a870cde (diff)
rename into ioriot
Diffstat (limited to 'ioreplay/src/generate/gtask.c')
-rw-r--r--ioreplay/src/generate/gtask.c91
1 files changed, 0 insertions, 91 deletions
diff --git a/ioreplay/src/generate/gtask.c b/ioreplay/src/generate/gtask.c
deleted file mode 100644
index 55a1124..0000000
--- a/ioreplay/src/generate/gtask.c
+++ /dev/null
@@ -1,91 +0,0 @@
-// Copyright 2018 Mimecast Ltd.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#include "gtask.h"
-
-gtask_s* gtask_new(void *generate)
-{
- gtask_s *t = Malloc(gtask_s);
-
- t->generate = generate;
- t->line = NULL;
- t->path_r = NULL;
- t->path2_r = NULL;
-#ifdef LOG_FILTERED
- t->original_line = NULL;
-#endif
-
- return t;
-}
-
-void gtask_init(gtask_s *t, char *line, const unsigned long lineno)
-{
- if (t->line)
- free(t->line);
- t->line = Clone(line);
-
- if (t->path_r)
- free(t->path_r);
- if (t->path2_r)
- free(t->path2_r);
-
-#ifdef LOG_FILTERED
- if (t->original_line)
- free(t->original_line);
- t->original_line = Clone(line);
- t->filtered_where = NULL;
-#endif
-
- t->bytes = -1;
- t->address = 0;
- t->address2 = 0;
- t->count = -1;
- t->F = -1;
- t->fd = -1;
- t->flags = -1;
- t->G = -1;
- t->has_fd = false;
- t->vsize = NULL;
- t->vsize2 = NULL;
- t->lineno = lineno;
- t->mapped_fd = -1;
- t->mapped_time = -1;
- t->mode = -1;
- t->offset = -1;
- t->op = NULL;
- t->path2 = NULL;
- t->path2_r = NULL;
- t->path = NULL;
- t->path_r = NULL;
- t->gprocess = NULL;
- t->pid = -1;
- t->pidtid = NULL;
- t->ret = 0;
- t->status = -1;
- t->tid = -1;
- t->vfd = NULL;
- t->whence = -1;
-}
-
-void gtask_destroy(gtask_s *t)
-{
- if (t->line)
- free(t->line);
- if (t->path_r)
- free(t->path_r);
- if (t->path2_r)
- free(t->path2_r);
- free(t);
-}
-