From: Lawrence S. <ljs...@us...> - 2019-08-07 04:21:34
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 5218f13d0aec2002f5ad8ada6c71ed0913600f15 (commit) via 6f7047933763c9b874db2ddda0bbefb6c67671cb (commit) via edc45dc0e27cbb0204e3d5e185b1b38fb502f744 (commit) from 5547ad7d626c6a67579944ef4268b81966a5a39d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5218f13d0aec2002f5ad8ada6c71ed0913600f15 Author: Lawrence Sebald <ljs...@us...> Date: Wed Aug 7 00:20:10 2019 -0400 Update copyright. commit 6f7047933763c9b874db2ddda0bbefb6c67671cb Author: Lawrence Sebald <ljs...@us...> Date: Wed Aug 7 00:19:09 2019 -0400 Clean up some comments a bit for cleaner documentation. commit edc45dc0e27cbb0204e3d5e185b1b38fb502f744 Author: Lawrence Sebald <ljs...@us...> Date: Mon Aug 5 21:35:24 2019 -0400 Clean up some comments. ----------------------------------------------------------------------- Summary of changes: AUTHORS | 2 +- doc/README.KOS | 4 ++-- include/kos/mutex.h | 7 ++----- kernel/arch/dreamcast/include/dc/flashrom.h | 10 +++++++--- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/AUTHORS b/AUTHORS index 08eb927..ae18700 100644 --- a/AUTHORS +++ b/AUTHORS @@ -22,7 +22,7 @@ please see the README.KOS file in the doc directory. Contributors list (under the normal KOS license): ------------------------------------------------- Dan Potter: 1997, 2000, 2001, 2002, 2003, 2004 -Lawrence Sebald: 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 +Lawrence Sebald: 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Sam Steele: 2004 Gil Megidish: 2002 Florian Schulze: 2002 diff --git a/doc/README.KOS b/doc/README.KOS index cd3bf69..1b7e7cf 100644 --- a/doc/README.KOS +++ b/doc/README.KOS @@ -40,10 +40,10 @@ The actual license terms begin below this line: -------------------------------------------------------------------------------- All of the documentation and software included in the KallistiOS Releases -is copyrighted (C) 1997-2016 by Dan Potter, Lawrence Sebald, and others (as +is copyrighted (C) 1997-2019 by Dan Potter, Lawrence Sebald, and others (as noted in each file). -Copyright (C) 1997-2016 KallistiOS Contributors. All rights reserved. +Copyright (C) 1997-2019 KallistiOS Contributors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/include/kos/mutex.h b/include/kos/mutex.h index 0807084..b714d8e 100644 --- a/include/kos/mutex.h +++ b/include/kos/mutex.h @@ -6,9 +6,6 @@ */ -/* Other than the old function names, there's basically nothing left of the old - version of mutexes... */ - /** \file kos/mutex.h \brief Mutual exclusion locks. @@ -135,8 +132,8 @@ int mutex_init(mutex_t *m, int mtype); allocated internally for it. It is your responsibility to make sure that all threads waiting on the mutex are taken care of before destroying the mutex. - This function can be called on statically initialized, as well as - dynamically initialized ones. + This function can be called on statically initialized as well as dyanmically + initialized mutexes. \retval 0 On success \retval -1 On error, errno will be set as appropriate diff --git a/kernel/arch/dreamcast/include/dc/flashrom.h b/kernel/arch/dreamcast/include/dc/flashrom.h index 649d970..26569d2 100644 --- a/kernel/arch/dreamcast/include/dc/flashrom.h +++ b/kernel/arch/dreamcast/include/dc/flashrom.h @@ -150,7 +150,8 @@ int flashrom_delete(int offset); \param partid The partition ID to look in. \param blockid The logical block ID to look for. \param buffer_out Space to store the data. Must be at least 60 bytes. - \return 0 on success, <0 on error. \see fr_errs + \return 0 on success, <0 on error. + \see fr_errs */ int flashrom_get_block(int partid, int blockid, uint8 * buffer_out); @@ -188,7 +189,8 @@ typedef struct flashrom_syscfg { /** \brief Retrieve the current system configuration settings. \param out Storage for the configuration. - \return 0 on success, <0 on error. \see fr_errs + \return 0 on success, <0 on error. + \see fr_errs */ int flashrom_get_syscfg(flashrom_syscfg_t * out); @@ -210,7 +212,9 @@ int flashrom_get_syscfg(flashrom_syscfg_t * out); This function attempts to find the region of the Dreamcast. It may or may not work on 100% of Dreamcasts, apparently. - \return A region code (0>=) \see fr_region, or error (<0) \see fr_errs . + \return A region code (>=0), or error (<0). + \see fr_region + \see fr_errs */ int flashrom_get_region(); hooks/post-receive -- A pseudo Operating System for the Dreamcast. |