summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rtems: Relicense rtemsmaxprio.cSebastian Huber2022-05-181-4/+23
| | | | | | Change license to BSD-2-Clause according to file history. Update #3053.
* Add file descriptions to kernel space headersSebastian Huber2022-05-189-3/+53
|
* Fix copyright notice of kernel space headersSebastian Huber2022-05-186-53/+59
| | | | | Use the copyright notice of the associated header file from FreeBSD if the kernel space header file contains a substantial amount of imported code.
* Add include guard checks to kernel space headersSebastian Huber2022-05-182-0/+8
|
* Synchronize all file descriptors in sync()Sebastian Huber2022-05-171-72/+12
| | | | | | | Synchronize all file descriptors and not just the ones associated with a FILE object. Close #4656.
* score: Fix SMP priority affinity scheduler yieldSebastian Huber2022-05-131-0/+1
|
* score: Add SMP priority affinity scheduler yieldTian Ye2022-05-122-1/+25
|
* error.c: Add file header and licenseRyan Long2022-05-041-2/+28
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* ftpd.c: Add file header and licenseRyan Long2022-05-041-0/+33
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* rtems-rfs-dir-hash.c: Add file headers and licensesRyan Long2022-05-041-0/+27
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* telnetd/des.h: Add file header and licenseRyan Long2022-05-041-0/+33
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* __getpid: Add file headers and licensesRyan Long2022-05-041-0/+28
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* t-test-checks-psx.c: Add file headers and licensesRyan Long2022-05-041-0/+33
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* rtems-jffs2-config.h: Add file headers and licensesRyan Long2022-05-041-0/+33
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* include: Add file headers and licensesRyan Long2022-05-042-0/+66
| | | | | These files had no header, copyright, or license. Based on git history, added appropriate copyrights and licenses.
* score/src: Add file headers and licensesRyan Long2022-05-043-0/+81
| | | | | These files had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* ftpd.h: Add file header and licenseRyan Long2022-05-041-1/+30
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* include/pci: Add file header and licenseRyan Long2022-05-041-1/+20
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* cpukit/include/rtems: Add file headers and licensesRyan Long2022-05-042-0/+53
| | | | | These files had no header, copyright, or licenses. Based on git history, added appropriate copyright and license.
* sparc64-syscall.h: Add file headers and licensesRyan Long2022-05-041-0/+15
| | | | | This file had no header, copyright, or license. Based on git history, added appropriate copyright and license.
* cpukit/microblaze: Add file headers and licensesRyan Long2022-05-042-0/+70
| | | | | These files had no file header, copyright, or license. Based on git history, added appropriate copyright and license.
* cpukit/libmisc: Add file headers and licensesRyan Long2022-05-043-3/+90
| | | | | These files had no file header, copyright, or license. Based on git history, added appropriate copyright and license.
* adasupp.c: Add file header and licenseRyan Long2022-05-041-0/+33
| | | | | This file had no file header, copyright, or license. Based on git history, added appropriate copyright and license.
* cpukit/libcsupport: Adding file headers and licensesRyan Long2022-05-0425-10/+734
| | | | | These files had no file header, copyright, or license. Based on git history, added appropriate copyright and license.
* cpukit/include: Adding file headers and licensesRyan Long2022-05-047-4/+207
| | | | | These files had no file header, copyright, or license. Based on git history, added appropriate copyright and license.
* heap: Fix heap statistics with protection enabledSebastian Huber2022-04-282-9/+10
| | | | Close #4644.
* libdl: Manually adding file headers and licensesRyan Long2022-04-276-0/+210
| | | | | | | These files had no file header, copyright, or license. Chris identified that these were made by him. Updates #4521
* Remove duplicate SPDX lines accidentally addedJoel Sherrill2022-04-084-8/+0
|
* x86_64/elf_machdep.h: Replace stub with NetBSD versionRyan Long2022-04-081-4/+76
| | | | | | | The other ports included that architecture's version of this file from NetBSD. This patch follows that pattern. closes #4641
* imfs: Fix index underrun when extending empty fileChristian Mauderer2022-04-071-1/+2
| | | | | | | | | | | | | | | | | | | | | | | Currently the following sequence causes a endless loop when extending an IMFS file: - Create a file with zero length and close it. - Make sure nearly no allocatable memory is left. - Open the file and write enough data into it that more than the remaining memory will be used. In that case when extending the IMFS file, the file currently need zero blocks. If allocating enough new blocks fails, the already allocated new blocks will be freed again. The comparison of block>=old_blocks that has been used prior to this patch compared two unsigned numbers. If old_blocks was zero, the comparison of these two numbers always evaluated to true. This patch frees the last block in a separate step to avoid this problem. Fixes #4639
* shell: Add rtems_shell_run_main_loop()Sebastian Huber2022-04-062-0/+50
| | | | | | | In contrast to rtems_shell_main_loop(), this new function does not perform all sorts of initialization based on environment settings. For example, due to the use of isatty() in rtems_shell_main_loop() it is impossible to run an interactive shell through a socket connection.
* shell: Move rtems_shell_init_environment() callSebastian Huber2022-04-061-2/+2
| | | | | Move rtems_shell_init_environment() call to rtems_shell_set_shell_env() since this function uses the POSIX key.
* shell: Add and use SHELL_MAGICSebastian Huber2022-04-061-3/+5
|
* shell: Simplify rtems_shell_dup_current_env()Sebastian Huber2022-04-061-10/+7
| | | | Do not assign members already provided by the global environment.
* shell: Refactor rtems_shell_main_loop()Sebastian Huber2022-04-061-134/+150
| | | | | Disentangle the shell main loop from setup and teardown code. Move main loop into shell_main_loop().
* shell: Move line editor output checkSebastian Huber2022-04-061-44/+38
| | | | | Move call to isatty() to caller of rtems_shell_line_editor(). This avoids a dependency on isatty() in rtems_shell_line_editor().
* libmisc/untar: Use a larger block size to read and write filesChris Johns2022-04-061-20/+33
| | | | | | | - A larger block size lets files systems work better. On JFFS a 512 byte compressed block means lots of small flash updates Closes #4635
* Update email address of Fernando Ruiz Casas to <fruizcasas@gmail.com>Joel Sherrill2022-04-0543-202/+260
| | | | This was requested to be executed prior to relicensing to BSD-2.
* cpukit/libmisc/dumpbuf/dumpbuf.c: Manually change license to BSD-2Joel Sherrill2022-04-021-3/+20
| | | | | | | There was a typo in the license text and this file was missed by the script. Updates #3053
* cpukit/include; Remove SPDX from Gaisler files NOT changed to BSD-2Joel Sherrill2022-04-0212-24/+0
|
* cpukit/libcsupport/src/_*: Change license to BSD-2Joel Sherrill2022-04-018-24/+176
| | | | Updates #3053.
* cpukit/libcsupport/src/[g-r]*: Change license to BSD-2Joel Sherrill2022-04-0151-157/+1132
| | | | Updates #3053.
* cpukit/libcsupport/src/[s-z]*: Change license to BSD-2Joel Sherrill2022-04-0140-127/+893
| | | | Updates #3053.
* cpukit/libcsupport/src/[a-f]*: Change license to BSD-2Joel Sherrill2022-04-0138-117/+841
| | | | Updates #3053.
* cpukit/include/rtems/timespec.h: Change license to BSD-2Joel Sherrill2022-04-011-3/+22
| | | | | | Permission received from Krzysztof Miesowicz. Updates #3053.
* cpukit/include/rtems/cbs.h: Change license to BSD-2Joel Sherrill2022-04-011-3/+22
| | | | | | Permission received from Petr Benes Updates #3053.
* cpukit/score/cpu/moxie: Change license to BSD-2Joel Sherrill2022-04-018-24/+176
| | | | | | Permission received from Anthony Green. Updates #3053.
* libcsupport: Use _fwalk_reent()Sebastian Huber2022-04-011-19/+10
| | | | | Use _fwalk_reent() instead of _fwalk(), since _fwalk() was removed from Newlib. Include <sys/reent.h> and remove local declarations.
* rtems: Clarify scheduler of created taskSebastian Huber2022-03-291-3/+3
|
* cpukit/include/rtems/confdefs/libpci.h: Manual file header clean upJoel Sherrill2022-03-251-8/+8
|