Skip to content

Commit

Permalink
bareosfd.h: remove do_io_in_core from PyIoPacket type
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Nov 29, 2022
1 parent 3050824 commit 82b0b0a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/src/plugins/filed/python/module/bareosfd.h
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ typedef struct {
int64_t offset; /* Lseek argument */
bool win32; /* Win32 GetLastError returned */
int filedes; /* filedescriptor for read/write in core */
bool do_io_in_core; /* do i/o (read/write) in core, not in plugin */
} PyIoPacket;

// Forward declarations of type specific functions.
Expand Down Expand Up @@ -403,8 +402,6 @@ static PyMemberDef PyIoPacket_members[]
(char*)"Win32 GetLastError returned"},
{(char*)"filedes", T_INT, offsetof(PyIoPacket, filedes), 0,
(char*)"file descriptor of current file"},
{(char*)"do_io_in_core", T_BOOL, offsetof(PyIoPacket, do_io_in_core), 0,
(char*)"set to true if i/o (read/write) should be done in core"},
{NULL, 0, 0, 0, NULL}};

# pragma GCC diagnostic push
Expand Down

0 comments on commit 82b0b0a

Please sign in to comment.