Enable support for providing a queue maximum index

This commit is contained in:
Cary R
2020-07-17 01:32:53 -07:00
parent 2c9cce2303
commit 6ff07c1074
12 changed files with 126 additions and 61 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2014 Stephen Williams ([email protected])
* Copyright (c) 2014-2020 Stephen Williams ([email protected])
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
@@ -22,8 +22,8 @@
using namespace std;
netqueue_t::netqueue_t(ivl_type_t vec)
: netdarray_t(vec)
netqueue_t::netqueue_t(ivl_type_t vec, long max_idx)
: netdarray_t(vec), max_idx_(max_idx)
{
}