openflow build environment setup

This commit is contained in:
2025-11-11 16:45:43 +08:00
parent be0a7ad9b3
commit 50ecb9a23f
2767 changed files with 62766 additions and 649828 deletions

View File

@ -0,0 +1,18 @@
// -*- c-basic-offset: 4 -*-
#ifndef CLICK_THREADSCHED_HH
#define CLICK_THREADSCHED_HH
CLICK_DECLS
class ThreadSched { public:
enum { THREAD_QUIESCENT = -1, THREAD_UNKNOWN = -1000 };
ThreadSched() { }
virtual ~ThreadSched() { }
virtual int initial_home_thread_id(const Element *e);
};
CLICK_ENDDECLS
#endif