Subversion Repositories HelenOS-historic

Rev

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

Rev 1264 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 debug Debug
-
 
30
 * @ingroup kernel
-
 
31
 * @{
-
 
32
 * @}
-
 
33
 */
-
 
34
 
-
 
35
 
-
 
36
 /** @addtogroup genericdebug generic
-
 
37
 * @ingroup debug
-
 
38
 * @{
-
 
39
 */
-
 
40
 
29
/**
41
/**
30
 * @file    symtab.c
42
 * @file
31
 * @brief   Kernel symbol resolver.
43
 * @brief   Kernel symbol resolver.
32
 */
44
 */
33
 
45
 
34
#include <symtab.h>
46
#include <symtab.h>
35
#include <typedefs.h>
47
#include <typedefs.h>
Line 190... Line 202...
190
    }
202
    }
191
    strncpy(input, output, MAX_SYMBOL_NAME);
203
    strncpy(input, output, MAX_SYMBOL_NAME);
192
    return found;
204
    return found;
193
   
205
   
194
}
206
}
-
 
207
 
-
 
208
 /** @}
-
 
209
 */
-
 
210