arch: all: Remove not used struct _caller_saved

The struct _caller_saved is not used. Most architectures put
automatically the registers onto stack, in others architectures the
exception code does it.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
Flavio Ceolin 2019-04-17 14:54:15 -07:00 committed by Andrew Boie
commit 4f99a38b06
12 changed files with 1 additions and 123 deletions

View file

@ -12,7 +12,6 @@
*
* struct _thread_arch
* struct _callee_saved
* struct _caller_saved
*
* necessary to instantiate instances of struct k_thread.
*/
@ -23,11 +22,6 @@
#ifndef _ASMLANGUAGE
struct _caller_saved {
};
typedef struct _caller_saved _caller_saved_t;
struct _callee_saved {
};