summaryrefslogtreecommitdiff
path: root/usrp2/firmware/lib/buffer_state.h
diff options
context:
space:
mode:
authoreb2009-01-23 02:12:04 +0000
committereb2009-01-23 02:12:04 +0000
commit63bda2352df94fd07843b38be17a6129acb5af54 (patch)
treec6cf22dbafeb743bd06e3b2ccc87c559ad8ebe78 /usrp2/firmware/lib/buffer_state.h
parent413543bbf3bc445079010d3f7f5ed4f8ab30d526 (diff)
downloadgnuradio-63bda2352df94fd07843b38be17a6129acb5af54.tar.gz
gnuradio-63bda2352df94fd07843b38be17a6129acb5af54.tar.bz2
gnuradio-63bda2352df94fd07843b38be17a6129acb5af54.zip
revert extraction of buffer_state
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10294 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/firmware/lib/buffer_state.h')
-rw-r--r--usrp2/firmware/lib/buffer_state.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/usrp2/firmware/lib/buffer_state.h b/usrp2/firmware/lib/buffer_state.h
deleted file mode 100644
index f855dc4ae..000000000
--- a/usrp2/firmware/lib/buffer_state.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* -*- c++ -*- */
-/*
- * Copyright 2009 Free Software Foundation, Inc.
- *
- * 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 3 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, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef INCLUDED_BUFFER_STATE_H
-#define INCLUDED_BUFFER_STATE_H
-
-#include "memory_map.h"
-
-typedef enum {
- BS_EMPTY,
- BS_FILLING,
- BS_FULL,
- BS_EMPTYING,
-} buffer_state_t;
-
-extern buffer_state_t buffer_state[NBUFFERS];
-
-#endif /* INCLUDED_BUFFER_STATE_H */