remove last remnants of autostart, which has been removed for quite a while.

This commit is contained in:
Bernhard Amann 2012-05-25 10:49:17 -07:00
parent 976d8f7ba7
commit 2e452dc29f
3 changed files with 0 additions and 8 deletions

View file

@ -24,9 +24,6 @@ export {
## Read mode to use for this stream ## Read mode to use for this stream
mode: Mode &default=default_mode; mode: Mode &default=default_mode;
## Automatically start the input stream after the first filter has been added
autostart: bool &default=T;
## Descriptive name. Used to remove a filter at a later time ## Descriptive name. Used to remove a filter at a later time
name: string; name: string;
@ -68,9 +65,6 @@ export {
## Read mode to use for this stream ## Read mode to use for this stream
mode: Mode &default=default_mode; mode: Mode &default=default_mode;
## Automatically start the input stream after the first filter has been added
autostart: bool &default=T;
## Descriptive name. Used to remove a filter at a later time ## Descriptive name. Used to remove a filter at a later time
name: string; name: string;

View file

@ -287,7 +287,6 @@ bool Manager::CreateStream(Stream* info, RecordVal* description)
} }
EnumVal* reader = description->LookupWithDefault(rtype->FieldOffset("reader"))->AsEnumVal(); EnumVal* reader = description->LookupWithDefault(rtype->FieldOffset("reader"))->AsEnumVal();
Val *autostart = description->LookupWithDefault(rtype->FieldOffset("autostart"));
ReaderFrontend* reader_obj = new ReaderFrontend(reader->InternalInt()); ReaderFrontend* reader_obj = new ReaderFrontend(reader->InternalInt());
assert(reader_obj); assert(reader_obj);

View file

@ -227,7 +227,6 @@ private:
// For implementing Fmt(). // For implementing Fmt().
char* buf; char* buf;
unsigned int buf_len; unsigned int buf_len;
bool autostart;
unsigned int num_fields; unsigned int num_fields;
const threading::Field* const * fields; // raw mapping const threading::Field* const * fields; // raw mapping