Lines Matching full:sequence
47 loadable module which creates a file called /proc/sequence. The file, when
49 sequence will continue until the user loses patience and finds something
53 dd if=/proc/sequence of=out1 count=1
54 dd if=/proc/sequence skip=1 of=out2 count=1
68 - entry = create_proc_entry("sequence", 0, NULL);
71 + entry = proc_create("sequence", 0, NULL, &ct_file_ops);
80 though with freedom to map the position number to a sequence location
99 The /proc/sequence iterator just uses the count of the next number it
108 For our simple sequence example,
121 holding the current position. There is no upper bound for the sequence
137 move the iterator forward to the next position in the sequence. The
140 next() function returns a new iterator, or NULL if the sequence is
151 to find the new location in the sequence. When the iterator is being
154 value (zero always tells start() to restart the sequence). This is not
160 sequence is reported twice in the file. In order to discourage this bug
353 proc_create("sequence", 0, NULL, &ct_file_ops);