Changeset ce5bcb4 in mainline


Ignore:
Timestamp:
2006-06-07T17:34:32Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f951077
Parents:
41269bd
Message:

Doxygen comments update.

Files:
25 edited

Legend:

Unmodified
Added
Removed
  • console/console.c

    r41269bd rce5bcb4  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
     28
     29/** @defgroup console Console
     30 * @brief       HelenOS console.
     31 * @{
     32 */
     33/** @file
     34 */
     35
    2836/* TODO: remove */
    2937#include <stdio.h>
     
    508516        return 0;       
    509517}
    510 
     518 
     519/** @}
     520 */
     521
  • console/console.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup console
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#ifndef __CONSOLE_H__
    3036#define __CONSOLE_H__
     
    4551#endif
    4652
     53 
     54/** @}
     55 */
     56
  • console/gcons.c

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup console
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#include <ipc/fb.h>
    3036#include <ipc/ipc.h>
     
    423429        gcons_redraw_console();
    424430}
     431 
     432/** @}
     433 */
     434
  • console/gcons.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup console
     30 * @{
     31 */
     32/** @file
     33 */
     34
    2935#ifndef _GCONS_H_
    3036#define _GCONS_H_
     
    3844
    3945#endif
     46 
     47/** @}
     48 */
     49
  • console/screenbuffer.c

    r41269bd rce5bcb4  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/** @addtogroup console
     30 * @{
     31 */
     32/** @file
    2733 */
    2834
     
    134140}
    135141
     142 
     143/** @}
     144 */
     145
  • console/screenbuffer.h

    r41269bd rce5bcb4  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/** @addtogroup console
     30 * @{
     31 */
     32/** @file
    2733 */
    2834
     
    5864/** Returns keyfield for position on screen. Screenbuffer->buffer is cyclic buffer so we must couted in index of the topmost line.
    5965 * @param scr   screenbuffer
    60  * @oaram x     position on screen
     66 * @param x     position on screen
    6167 * @param y     position on screen
    6268 * @return      keyfield structure with character and its attributes on x,y
     
    8995#endif
    9096
     97 
     98/** @}
     99 */
     100
  • fb/ega.c

    r41269bd rce5bcb4  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
     28
     29/** @defgroup egafb EGA framebuffer
     30 * @brief       HelenOS EGA framebuffer.
     31 * @ingroup fbs
     32 * @{
     33 */
     34/** @file
     35 */
     36
     37
    2838#include <stdlib.h>
    2939#include <unistd.h>
     
    353363}
    354364
     365
     366/**
     367 * @}
     368 */
  • fb/ega.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup egafb
     30 * @brief       HelenOS EGA framebuffer.
     31 * @ingroup fbs
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef _EGA_H_
    3038#define _EGA_H_
     
    3341
    3442#endif
     43
     44/** @}
     45 */
     46
  • fb/fb.c

    r41269bd rce5bcb4  
    2727 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2828 */
     29
     30/** @defgroup fbs Framebuffers
     31 * @brief       HelenOS framebuffers.
     32 * @{
     33 * @}
     34 */
     35/** @defgroup fb Framebuffer
     36 * @brief       HelenOS framebuffer.
     37 * @ingroup fbs
     38 * @{
     39 */
     40/** @file
     41 */
     42
    2943
    3044#include <stdlib.h>
     
    10551069}
    10561070
     1071
     1072/**
     1073 * @}
     1074 */
  • fb/fb.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup fb
     30 * @ingroup fbs
     31 * @{
     32 */
     33/** @file
     34 */
     35
    2936#ifndef _FB_H_
    3037#define _FB_H_
     
    3340
    3441#endif
     42
     43/** @}
     44 */
     45
  • fb/sysio.c

    r41269bd rce5bcb4  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/** @defgroup sysio SysIO
     30 * @brief       HelenOS framebuffer emulation via kernel.
     31 * @ingroup fbs
     32 * @{
     33 */
     34/** @file
    2735 */
    2836
     
    183191        sysputs("\033[0;25r");
    184192}
     193
     194/**
     195 * @}
     196 */
     197
  • fb/sysio.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup sysio
     30 * @brief       HelenOS framebuffer emulation via kernel.
     31 * @ingroup fbs
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef _SYSIO_H_
    3038#define _SYSIO_H_
     
    3341
    3442#endif
     43
     44/** @}
     45 */
     46
  • kbd/arch/ia32/include/kbd.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdia32 ia32
     30 * @brief       HelenOS ia32 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef __ia32_KBD_H__
    3038#define __ia32_KBD_H__
     
    3644
    3745#endif
     46
     47/**
     48 * @}
     49 */
     50
  • kbd/arch/ia32/src/kbd.c

    r41269bd rce5bcb4  
    2626 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2727 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28 */
     29
     30/** @addtogroup kbdia32 ia32
     31 * @brief       HelenOS ia32 arch dependent parts of uspace keyboard handler.
     32 * @ingroup  kbd
     33 * @{
     34 */
     35/** @file
    2836 */
    2937
     
    364372        return  1;
    365373}
     374
     375/**
     376 * @}
     377 */
     378
  • kbd/arch/ia64/include/kbd.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdia64 ia64
     30 * @brief       HelenOS ia64 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
     36
     37
    2938#ifndef __ia64_KBD_H__
    3039#define __ia64_KBD_H__
     
    3746#endif
    3847
     48/**
     49 * @}
     50 */
  • kbd/arch/ia64/src/kbd.c

    r41269bd rce5bcb4  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/** @addtogroup kbdia64 ia64
     30 * @brief       HelenOS ia64 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
    2735 */
    2836
     
    156164        return  1;
    157165}
     166
     167/**
     168 * @}
     169 */
  • kbd/arch/mips32/include/kbd.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdmips32 mips32
     30 * @brief       HelenOS mips32 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef __mips32_KBD_H__
    3038#define __mips32_KBD_H__
     
    3745#endif
    3846
     47/**
     48 * @}
     49 */
  • kbd/arch/mips32/src/kbd.c

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdmips32 mips32
     30 * @brief       HelenOS mips32 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
    2936#include <arch/kbd.h>
    3037#include <ipc/ipc.h>
     
    388395}
    389396
     397/**
     398 * @}
     399 */
  • kbd/arch/ppc32/include/kbd.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdppc32 ppc32
     30 * @brief       HelenOS ppc32 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef __ppc32_KBD_H__
    3038#define __ppc32_KBD_H__
     
    3644
    3745#endif
     46
     47/** @}
     48 */
     49
  • kbd/arch/ppc32/src/kbd.c

    r41269bd rce5bcb4  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/** @addtogroup kbdppc32 ppc32
     30 * @brief       HelenOS ppc32 arch dependent parts of uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
    2735 */
    2836
     
    193201        return 1;
    194202}
     203
     204/** @}
     205 */
     206
  • kbd/generic/kbd.c

    r41269bd rce5bcb4  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/** @defgroup kbd Keyboard handler
     30 * @brief       HelenOS uspace keyboard handler.
     31 * @{
     32 * @}
     33 */
     34/** @addtogroup kbdgen generic
     35 * @brief       HelenOS generic uspace keyboard handler.
     36 * @ingroup  kbd
     37 * @{
     38 */
     39/** @file
    2740 */
    2841
     
    128141
    129142}
     143
     144/**
     145 * @}
     146 */
     147
  • kbd/generic/key_buffer.c

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdgen
     30 * @brief       HelenOS generic uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
    2936#include <key_buffer.h>
    3037#include <futex.h>
     
    102109}
    103110
     111/**
     112 * @}
     113 */
    104114
  • kbd/include/kbd.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdgen generic
     30 * @brief       HelenOS generic uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef __KBD_H__
    3038#define __KBD_H__
     
    4755#endif
    4856
     57/**
     58 * @}
     59 */
     60
  • kbd/include/key_buffer.h

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @addtogroup kbdgen
     30 * @brief       HelenOS generic uspace keyboard handler.
     31 * @ingroup  kbd
     32 * @{
     33 */
     34/** @file
     35 */
     36
    2937#ifndef __KEY_BUFFER_H__
    3038#define __KEY_BUFFER_H__
     
    5159#endif
    5260
     61/**
     62 * @}
     63 */
     64
  • ns/ns.c

    r41269bd rce5bcb4  
    2727 */
    2828
     29/** @defgroup ns Naming Service
     30 * @brief       Naming service for HelenOS IPC.
     31 * @{
     32 */
     33
    2934/**
    3035 * @file        ns.c
    3136 * @brief       Naming service for HelenOS IPC.
    3237 */
     38
    3339
    3440#include <ipc/ipc.h>
     
    252258        free(hash_table_get_instance(item, hashed_service_t, link));
    253259}
     260/**
     261 * @}
     262 */
Note: See TracChangeset for help on using the changeset viewer.