#include "config.h"#include <stdlib.h>#include "queue.h"#include <math.h>#include <assert.h>#include "wss.h"Include dependency graph for srr.cc:

Go to the source code of this file.
Compounds | |
| class | PacketSRR |
| class | SRR |
| class | SRRClass |
| struct | wm_node |
Defines | |
| #define | MAXFLOW 100 |
| #define | MAXQUEUE 100 |
| #define | MAXWSSORDER 16 |
Functions | |
| int | getOrder (int i) |
Variables | |
| SRRClass | class_srr |
|
|
|
|
|
|
|
|
Definition at line 60 of file srr.cc. Referenced by SRR::command(), and SRR::SRR(). |
|
|
Definition at line 733 of file srr.cc. Referenced by SRR::command().
00733 {
00734 int order=0;
00735
00736 while( (1 << order)<= i)
00737 order++;
00738 return (order-1);
00739 }
|
|
|
|
1.3.3