Subversion Repositories HelenOS-historic

Rev

Rev 1457 | Rev 1704 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1457 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
/** @defgroup others Others
-
 
30
 * @ingroup kernel
-
 
31
 * @{
-
 
32
 * @}
-
 
33
 */
-
 
34
 
-
 
35
 /** @addtogroup generic   
-
 
36
 * @{
-
 
37
 */
-
 
38
 
29
/**
39
/**
30
 * @file    clock.c
40
 * @file
31
 * @brief   High-level clock interrupt handler.
41
 * @brief   High-level clock interrupt handler.
32
 *
42
 *
33
 * This file contains the clock() function which is the source
43
 * This file contains the clock() function which is the source
34
 * of preemption. It is also responsible for executing expired
44
 * of preemption. It is also responsible for executing expired
35
 * timeouts.
45
 * timeouts.
Line 180... Line 190...
180
            scheduler();
190
            scheduler();
181
        }
191
        }
182
    }
192
    }
183
 
193
 
184
}
194
}
-
 
195
 
-
 
196
 /** @}
-
 
197
 */
-
 
198