Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: include/err.h

Issue 1437453002: [kernel][ports] Add basic ports functionality (Closed) Base URL: https://github.com/travisg/lk.git@master
Patch Set: fix Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « app/tests/tests.c ('k') | include/kernel/port.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2008-2014 Travis Geiselbrecht 2 * Copyright (c) 2008-2014 Travis Geiselbrecht
3 * 3 *
4 * Permission is hereby granted, free of charge, to any person obtaining 4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files 5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction, 6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge, 7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software, 8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so, 9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions: 10 * subject to the following conditions:
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #define ERR_THREAD_DETACHED (-34) 64 #define ERR_THREAD_DETACHED (-34)
65 #define ERR_I2C_NACK (-35) 65 #define ERR_I2C_NACK (-35)
66 #define ERR_ALREADY_EXPIRED (-36) 66 #define ERR_ALREADY_EXPIRED (-36)
67 #define ERR_OUT_OF_RANGE (-37) 67 #define ERR_OUT_OF_RANGE (-37)
68 #define ERR_NOT_CONFIGURED (-38) 68 #define ERR_NOT_CONFIGURED (-38)
69 #define ERR_NOT_MOUNTED (-39) 69 #define ERR_NOT_MOUNTED (-39)
70 #define ERR_FAULT (-40) 70 #define ERR_FAULT (-40)
71 #define ERR_NO_RESOURCES (-41) 71 #define ERR_NO_RESOURCES (-41)
72 #define ERR_BAD_HANDLE (-42) 72 #define ERR_BAD_HANDLE (-42)
73 #define ERR_ACCESS_DENIED (-43) 73 #define ERR_ACCESS_DENIED (-43)
74 #define ERR_PARTIAL_WRITE (-44)
74 75
75 #define ERR_USER_BASE (-16384) 76 #define ERR_USER_BASE (-16384)
76 77
77 #endif 78 #endif
OLDNEW
« no previous file with comments | « app/tests/tests.c ('k') | include/kernel/port.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698